/* $Header: str.h,v 3.0 89/10/18 15:35:27 lwall Locked $ * * Copyright (c) 1989, Larry Wall * * You may distribute under the terms of the GNU General Public License * as specified in the README file that comes with the perl 3.0 kit. * * $Log: str.h,v $ * Revision 3.0 89/10/18 15:35:27 lwall * 3.0 baseline * */ 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 */ } str_link; char str_pok; /* state of str_ptr */ char str_nok; /* state of str_nval */ }; #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 long tmps_max INIT(-1); char *str_2ptr(); double str_2num(); STR *str_static(); STR *str_make(); STR *str_nmake(); char *str_gets();