blob: bd91abebbd6ae54799a3b413300138af216c088b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/* $Header: str.h,v 2.0 88/06/05 00:11:11 root Exp $
*
* $Log: str.h,v $
* Revision 2.0 88/06/05 00:11:11 root
* Baseline version 2.0.
*
*/
struct string {
char * str_ptr; /* pointer to malloced string */
double str_nval; /* numeric value, if any */
int str_len; /* allocated size */
int str_cur; /* length of str_ptr as a C string */
union {
STR *str_next; /* while free, link to next free str */
STAB *str_magic; /* while in use, ptr to magic stab, if any */
} str_link;
char str_pok; /* state of str_ptr */
char str_nok; /* state of str_nval */
char str_rare; /* used by search strings */
char str_prev; /* also used by search strings */
};
#define Nullstr Null(STR*)
/* the following macro updates any magic values this str is associated with */
#define STABSET(x) (x->str_link.str_magic && stabset(x->str_link.str_magic,x))
EXT STR **tmps_list;
EXT int tmps_max INIT(-1);
EXT int tmps_base INIT(-1);
char *str_2ptr();
double str_2num();
STR *str_static();
STR *str_make();
STR *str_nmake();
|