mirror of
https://github.com/BoredDevNL/BoredOS.git
synced 2026-05-15 10:48:38 +00:00
11 lines
156 B
C
11 lines
156 B
C
#ifndef EDITOR_H
|
|
#define EDITOR_H
|
|
|
|
#include "wm.h"
|
|
|
|
extern Window win_editor;
|
|
|
|
void editor_init(void);
|
|
void editor_open_file(const char *filename);
|
|
|
|
#endif
|