Initial commit at Mon May 18 09:27:46 EDT 2015 by tim on stravinsky

This commit is contained in:
Tim Edwards
2015-05-18 09:27:46 -04:00
commit d5e9f81cb0
129 changed files with 65358 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifdef __STDC__
void X_display_line(char *buf);
void X_display_cell(char *buf);
void X_display_refresh(void);
void X_clear_display(void);
void X_clear_cell(void);
void X_main_loop(int argc, char *argv[]); /* also in netgen.h */
#else
void X_display_line();
void X_display_cell();
void X_display_refresh();
void X_clear_display();
void X_clear_cell();
void X_main_loop(); /* also in netgen.h */
#endif