Files
beluga/main.h
T
2024-09-21 16:30:15 +02:00

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