blob: d0ba218b599e04d462ca1673c1a77606ea9150b8 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef _FILE_H
#define _FILE_H
#include "editor.h"
void editor_open(struct editor_state* editor, char* filename);
int file_save_current_file(struct editor_state *editor);
#endif
|