13 lines
231 B
C
13 lines
231 B
C
#ifndef EDITOR_OP_H_
|
|
#define EDITOR_OP_H_
|
|
|
|
#include "data.h"
|
|
|
|
void bufferInsertNewLine();
|
|
void bufferInsertBytes(char *src, int n);
|
|
void editorSetStatusMessage(const char *fmt, ...);
|
|
void bufferDelBytes();
|
|
|
|
|
|
#endif // EDITOR_OP_H_
|