fuNote/input.h
2018-10-19 13:24:58 +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