pike.git
/
src
/
program.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.h:1:
/*\ ||| This file a part of Pike, and is copyright by Fredrik Hubinette ||| Pike is distributed as GPL (General Public License) ||| See the files COPYING and DISCLAIMER for more information. \*/ /*
-
* $Id: program.h,v 1.
141
2001/
07
/
20
22
:
45
:
13
grubba
Exp $
+
* $Id: program.h,v 1.
142
2001/
08
/
15
20:
58
:
44
mast
Exp $
*/ #ifndef PROGRAM_H #define PROGRAM_H #include <stdarg.h> #include "global.h" #include "pike_types.h" #include "pike_macros.h" #include "svalue.h" #include "time_stuff.h"
pike.git/src/program.h:496:
struct svalue *ind); int get_small_number(char **q); void start_line_numbering(void); void store_linenumber(INT32 current_line, struct pike_string *current_file); PMOD_EXPORT struct pike_string *get_program_line(struct program *prog, INT32 *linep); PMOD_EXPORT struct pike_string *get_line(PIKE_OPCODE_T *pc, struct program *prog, INT32 *linep); void my_yyerror(char *fmt,...) ATTRIBUTE((format(printf,1,2)));
+
void yy_describe_exception(struct svalue *thrown);
struct program *compile(struct pike_string *prog, struct object *handler, int major, int minor, struct program *target, struct object *placeholder); PMOD_EXPORT int pike_add_function2(char *name, void (*cfun)(INT32), char *type, unsigned INT8 flags, unsigned INT16 opt_flags); PMOD_EXPORT int quick_add_function(char *name,