source: git/Singular/sdb.h @ 4676d5

spielwiese
Last change on this file since 4676d5 was 4676d5, checked in by Oleksandr Motsak <motsak@…>, 10 years ago
Moved timer.*, feread.cc and febase.* from /kernel/ to /Singular/ (also corrected the option(prot); handling) NOTE: also removes line breakes and timings in the output due to option (prot), which were unaccounted and undocumented
  • Property mode set to 100644
File size: 548 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 <Singular/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.