source: git/Singular/libparse.h @ c2da0a

spielwiese
Last change on this file since c2da0a was c2da0a, checked in by Kai Krüger <krueger@…>, 26 years ago
Bug fixes for libparse git-svn-id: file:///usr/local/Singular/svn/trunk@1398 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 754 bytes
Line 
1#ifndef LIBPARSE_H
2#define LIBPARSE_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/* $Id: libparse.h,v 1.4 1998-04-20 10:05:53 krueger Exp $ */
7/*
8* ABSTRACT: lib parsing
9*/
10#ifndef STANDALONE_PARSER
11#  include "subexpr.h"
12#endif
13typedef enum { LOAD_LIB, GET_INFO } lp_modes;
14typedef enum { OLD_LIBSTYLE, NEW_LIBSTYLE } lib_style_types;
15
16procinfo *iiInitSingularProcinfo(procinfov pi, char *libname,
17                                 char *procname, int line, long pos,
18                                 BOOLEAN pstatic = FALSE);
19int yylplex(char *libname, char *libfile, lib_style_types *lib_style, 
20            lp_modes=LOAD_LIB);
21void reinit_yylp();
22
23extern char * text_buffer;
24
25#endif /* LIBPARSE_H */ 
26
27
Note: See TracBrowser for help on using the repository browser.