23 lines
331 B
C
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_
|