9 lines
173 B
C
9 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
|
|
|