Made Editor Config global

This commit is contained in:
Arthur Barraux
2025-09-19 14:31:12 +02:00
parent 91e247d1de
commit 8ce621dfde
17 changed files with 235 additions and 215 deletions
+3 -3
View File
@@ -2,10 +2,10 @@
#define EDITOR_OP_H_
#include "data.h"
void editorInsertChar(struct editorConfig *E, int c);
void editorInsertChar(int c);
void editorInsertNewLine(struct editorConfig *E);
void editorInsertNewLine();
void editorDelChar(struct editorConfig *E);
void editorDelChar();
#endif // EDITOR_OP_H_