source: git/Singular/libparse.h @ d336d53

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