1 /* cgdb.h: 2 * ------- 3 * 4 * Contains macros for any of the sources here to use. 5 */ 6 7 #ifndef _CGDB_H_ 8 #define _CGDB_H_ 9 10 /* ----------- */ 11 /* Definitions */ 12 /* ----------- */ 13 14 #define MAXLINE 4096 15 16 /* Clean cgdb up (when exiting) */ 17 void cgdb_cleanup_and_exit(int val); 18 19 /* 20 * See documentation in cgdb.c. 21 */ 22 int run_shell_command(const char *command); 23 24 #endif 25