diff options
Diffstat (limited to 'file.h')
-rw-r--r-- | file.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,9 @@ -#pragma once +#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 |