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.
39
1998/04/
10
22:
24
:
22
hubbe Exp $
+
* $Id: program.h,v 1.
40
1998/04/
14
22:
10
:
50
hubbe Exp $
*/ #ifndef PROGRAM_H #define PROGRAM_H #include <stdarg.h> #include "global.h" #include "pike_types.h" #include "svalue.h" #define LFUN___INIT 0
pike.git/src/program.h:353:
void pop_compiler_frame(void); int low_get_storage(struct program *o, struct program *p); char *get_storage(struct object *o, struct program *p); struct program *low_program_from_function(struct program *p, INT32 i); struct program *program_from_function(struct svalue *f); struct program *program_from_svalue(struct svalue *s); struct find_child_cache_s; int find_child(struct program *parent, struct program *child); void yywarning(char *fmt, ...) ATTRIBUTE((format(printf,1,2)));
+
struct implements_cache_s;
+
int implements(struct program *a, struct program *b);
/* Prototypes end here */ #endif #ifdef DEBUG_MALLOC #define end_program() ((struct program *)debug_malloc_touch(debug_end_program())) #define end_class(NAME, FLAGS) do { debug_malloc_touch(new_program); debug_end_class(NAME, FLAGS); }while(0) #else #define end_class debug_end_class #define end_program debug_end_program #endif