pike.git/
src/
program.h
Branch:
Tag:
Non-build tags
All tags
No tags
1998-05-25
1998-05-25 15:22:53 by Henrik Grubbström (Grubba) <grubba@grubba.org>
15ff8c5b73d1373e50f2b213ab63eb52795ee5fe (
5
lines) (+
4
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Added program_indices() and program_values().
Rev: src/program.h:1.42
5:
\*/ /*
-
* $Id: program.h,v 1.
41
1998/
04
/
24
00
:
32
:
09
hubbe
Exp $
+
* $Id: program.h,v 1.
42
1998/
05
/
25
15
:
22
:
53
grubba
Exp $
*/ #ifndef PROGRAM_H #define PROGRAM_H
343:
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);
void start_line_numbering(void); void store_linenumber(INT32 current_line, struct pike_string *current_file); char *get_line(unsigned char *pc,struct program *prog,INT32 *linep);