14 lines
219 B
C
14 lines
219 B
C
#ifndef EDITOR_OP_H_
|
|
#define EDITOR_OP_H_
|
|
|
|
#include "data.h"
|
|
void bufferInsertChar(int c);
|
|
|
|
void bufferInsertNewLine();
|
|
|
|
void bufferDelChar();
|
|
|
|
void editorSetStatusMessage(const char *fmt, ...);
|
|
|
|
#endif // EDITOR_OP_H_
|