Files
beluga/main.h
T
Arthur Barraux e3c7099f64 documentation
2024-09-21 11:54:02 +02:00

16 lines
221 B
C

#ifndef MAIN_H
#define MAIN_H
/* terminal */
void die(const char *s);
void disableRawMode();
void enableRawMode();
char editorReadKey();
/* output */
void wipeScreen();
/* input */
void editorProcessKeypress();
#endif