Files
2025-09-19 14:31:12 +02:00

12 lines
167 B
C

#ifndef EDITOR_OP_H_
#define EDITOR_OP_H_
#include "data.h"
void editorInsertChar(int c);
void editorInsertNewLine();
void editorDelChar();
#endif // EDITOR_OP_H_