Skip to content
Snippets Groups Projects
Commit 6890b2ed authored by deuce's avatar deuce
Browse files

Add support for C++ programs.

parent 804b7341
No related branches found
No related tags found
No related merge requests found
......@@ -48,6 +48,9 @@ struct text_info {
unsigned char screenwidth;
};
#ifdef __cplusplus
extern "C" {
#endif
#define clreol() clrtoeol()
#define putch(x) echochar(x)
short curses_color(short color);
......@@ -71,3 +74,6 @@ void gettextinfo(struct text_info *info);
void _setcursortype(int type);
void textbackground(int colour);
void textcolor(int colour);
#ifdef __cplusplus
}
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment