Files
beluga/include/input.h
T
2024-09-23 17:51:59 +02:00

19 lines
349 B
C

#ifndef INPUT_H_
#define INPUT_H_
#include "data.h"
#include "define.h"
#include "terminal.h"
#include <unistd.h>
void editorMoveCursor(struct editorConfig *E, int key);
/**
* \fn void editorProcessKeypress()
* \brief Get the last key input and do the proper action.
*/
void editorProcessKeypress(struct editorConfig *E);
#endif // INPUT_H_