23 lines
381 B
C
23 lines
381 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 *bufferRowsToString(struct buffer_t *buf,int *buffer_len);
|
|
|
|
|
|
void editorCloseFile(void);
|
|
|
|
void editorOpen(struct buffer_t *buffer);
|
|
|
|
void editorSave();
|
|
|
|
void bufferFind(struct buffer_t *buf);
|
|
|
|
#endif // FILE_IO_H_
|