Files
arthur 419e924650
Build project / build (push) Has been cancelled
Add search function
2025-11-03 16:45:23 +01:00

23 lines
331 B
C

#ifndef FILE_IO_H_
#define FILE_IO_H_
#include "data.h"
#include "row_op.h"
#include "terminal.h"
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
char *editorRowsToString(int *buffer_len);
void editorCloseFile(void);
void editorOpen(char *filename);
void editorSave();
void editorFind();
#endif // FILE_IO_H_