fuNote/input.h

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