mirror of
https://github.com/BoredDevNL/BoredOS.git
synced 2026-05-15 10:48:38 +00:00
New feature(s): - Markdown reader (Automatically opens when opening .MD files, right click a .MD file to edit. Bug fixes: -N/A
11 lines
166 B
C
11 lines
166 B
C
#ifndef MARKDOWN_H
|
|
#define MARKDOWN_H
|
|
|
|
#include "wm.h"
|
|
|
|
extern Window win_markdown;
|
|
|
|
void markdown_init(void);
|
|
void markdown_open_file(const char *filename);
|
|
|
|
#endif
|