1 #ifndef SDB_H
2 #define SDB_H
3 /****************************************
4 *  Computer Algebra System SINGULAR     *
5 ****************************************/
6 /*
7 * ABSTRACT: Singular debugger
8 */
9 
10 #define HAVE_SDB
11 
12 #ifdef HAVE_SDB
13 #include "kernel/structs.h"
14 
15 EXTERN_VAR int    sdb_lines[];
16 EXTERN_VAR char * sdb_files[];
17 EXTERN_VAR int    sdb_flags;
18 
19 void sdb_edit(procinfo *pi);
20 void sdb_show_bp();
21 BOOLEAN sdb_set_breakpoint(const char *p, int lineno=0);
22 void sdb(Voice * currentVoice, const char * currLine, int len);
23 #endif
24 #endif
25 
26