source: git/Singular/sdb.h @ 4bada2

spielwiese
Last change on this file since 4bada2 was 72a01e, checked in by Hans Schoenemann <hannes@…>, 10 years ago
removed unused febase.h, moved parts to ipshell.h/subexpr.h/structs.h
  • Property mode set to 100644
File size: 519 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/structs.h>
14
15extern int    sdb_lines[];
16extern char * sdb_files[];
17extern int    sdb_flags;
18
19void sdb_edit(procinfo *pi);
20void sdb_show_bp();
21BOOLEAN sdb_set_breakpoint(const char *p, int lineno=0);
22void sdb(Voice * currentVoice, const char * currLine, int len);
23#endif
24#endif
25
Note: See TracBrowser for help on using the repository browser.