pike.git
/
src
/
program.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.h:1:
/* || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
||
$Id: program.h,v 1.268 2010/02/18 08:52:55 srb Exp $
+
||
$Id$
*/ #ifndef PROGRAM_H #define PROGRAM_H #include "global.h" #include "pike_macros.h" #include "pike_error.h" #include "svalue.h" #include "dmalloc.h"
pike.git/src/program.h:894:
struct ff_hash; int find_shared_string_identifier(struct pike_string *name, struct program *prog); PMOD_EXPORT int find_identifier(const char *name,struct program *prog); int store_prog_string(struct pike_string *str); int store_constant(const struct svalue *foo, int equal, struct pike_string *constant_name); struct array *program_indices(struct program *p); struct array *program_values(struct program *p);
+
int low_program_index_no_free(struct svalue *to, struct program *p, int e,
+
struct object *parent, int parent_identifier);
int program_index_no_free(struct svalue *to, struct svalue *what, struct svalue *ind); int get_small_number(char **q); void ext_store_program_line (struct program *prog, INT32 line, struct pike_string *file); void start_line_numbering(void); void store_linenumber(INT32 current_line, struct pike_string *current_file); PMOD_EXPORT struct pike_string *low_get_program_line(struct program *prog, INT32 *linep); PMOD_EXPORT struct pike_string *get_program_line(struct program *prog, INT32 *linep);