Files
beluga/include/editor_op.h
T
2024-10-10 02:09:48 +02:00

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_