Adding splitting screen and buffer switching
Build project / build (push) Successful in 52s

This commit is contained in:
Arthur Barraux
2026-01-24 19:29:46 +01:00
parent b039cf3ded
commit 557fc8894a
22 changed files with 1170 additions and 384 deletions
+3 -3
View File
@@ -8,15 +8,15 @@
#include <stdlib.h>
#include <sys/types.h>
char *editorRowsToString(int *buffer_len);
char *bufferRowsToString(struct buffer_t *buf,int *buffer_len);
void editorCloseFile(void);
void editorOpen(char *filename);
void editorOpen(struct buffer_t *buffer);
void editorSave();
void editorFind();
void bufferFind(struct buffer_t *buf);
#endif // FILE_IO_H_