Hello world curses app

This commit is contained in:
2018-01-06 18:11:44 -08:00
parent 3db304e893
commit a576e43001
8 changed files with 128 additions and 1 deletions

15
ncac.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef _NCAC_H_
#define _NCAC_H_
/**
* Cleans up before exit. Installed on SIGINT
*/
void finish();
/**
* Sets up ncurses and internal data structures
*/
void setup();
#endif // _NCAC_H_