fuNote/output.h
2018-10-19 13:24:58 +02:00

21 lines
380 B
C

#ifndef _OUTPUT_H
#define _OUTPUT_H
void editorScroll();
void editorDrawRows(struct abuf *ab);
void editorDrawStatusBar(struct abuf *ab);
void editorDrawMessageBar(struct abuf *ab);
void editorRefreshScreen();
void editorSetStatusMessage(const char *fmt, ...);
// Line oriented actions
void editorInsertChar(int c);
void editorInsertNewLine();
void editorDelChar();
#endif