source: git/Singular/sdb.h @ aee346d

spielwiese
Last change on this file since aee346d was 6ce030f, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
removal of the $Id$ svn tag from everywhere NOTE: the git SHA1 may be used instead (only on special places) NOTE: the libraries Singular/LIB/*.lib still contain the marker due to our current use of svn
  • Property mode set to 100644
File size: 546 bytes
Line 
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/febase.h>
14#include <kernel/structs.h>
15
16extern int    sdb_lines[];
17extern char * sdb_files[];
18extern int    sdb_flags;
19
20void sdb_edit(procinfo *pi);
21void sdb_show_bp();
22BOOLEAN sdb_set_breakpoint(const char *p, int lineno=0);
23void sdb(Voice * currentVoice, const char * currLine, int len);
24#endif
25#endif
26
Note: See TracBrowser for help on using the repository browser.