fuNote/output.h

23 lines
394 B
C

#ifndef _OUTPUT_H
#define _OUTPUT_H
struct abuf;
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