18 lines
275 B
C
18 lines
275 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>
|
|
|
|
void editorCloseFile(void);
|
|
|
|
void editorOpen(struct buffer_t *buffer);
|
|
|
|
void editorSave();
|
|
|
|
#endif // FILE_IO_H_
|