summaryrefslogtreecommitdiff
path: root/file.h
blob: 70889ac44cc9b7aa9ea73128a07a25b6ca2cdedd (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);
void editor_save(struct editor_state* editor);

#endif