12 lines
235 B
C
12 lines
235 B
C
#ifndef EDITOR_OP_H_
|
|
#define EDITOR_OP_H_
|
|
|
|
#include "data.h"
|
|
void editorInsertChar(struct editorConfig *E, int c);
|
|
|
|
void editorInsertNewLine(struct editorConfig *E);
|
|
|
|
void editorDelChar(struct editorConfig *E);
|
|
|
|
#endif // EDITOR_OP_H_
|