fuNote/input.h
2020-10-20 11:13:45 +02:00

10 lines
173 B
C

#ifndef _INPUT_H_
#define _INPUT_H_
char *editorPrompt(char *prompt, void (*callback)(char *, int));
void editorMoveCursor(int key);
void editorProcessKeypress();
#endif