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