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.
43
1998/
05
/
25
16
:
40
:
26
grubba
Exp $
+
* $Id: program.h,v 1.
44
1998/
06
/
24
04
:
56
:
46
hubbe
Exp $
*/ #ifndef PROGRAM_H #define PROGRAM_H #include <stdarg.h> #include "global.h" #include "pike_types.h" #include "svalue.h" #include "time_stuff.h"
pike.git/src/program.h:328:
int add_object_constant(char *name, struct object *o, INT32 flags); int add_function_constant(char *name, void (*cfun)(INT32), char * type, INT16 flags); int debug_end_class(char *name, INT32 flags); INT32 define_function(struct pike_string *name, struct pike_string *type, INT16 flags, INT8 function_flags, union idptr *func);
+
int really_low_find_shared_string_identifier(struct pike_string *name,
+
struct program *prog,
+
int see_static);
int low_find_shared_string_identifier(struct pike_string *name, struct program *prog); struct ff_hash; int find_shared_string_identifier(struct pike_string *name, struct program *prog); int find_identifier(char *name,struct program *prog); int store_prog_string(struct pike_string *str); int store_constant(struct svalue *foo, int equal); struct array *program_indices(struct program *p); struct array *program_values(struct program *p);