18 lines
272 B
C
18 lines
272 B
C
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
/* terminal */
|
|
|
|
void die(const char *s);
|
|
void disableRawMode();
|
|
void enableRawMode();
|
|
char editorReadKey();
|
|
|
|
/* output */
|
|
void wipeScreen();
|
|
void editorDrawRows();
|
|
void editorRefreshScreen();
|
|
|
|
/* input */
|
|
void editorProcessKeypress();
|
|
#endif
|