This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Builds C++ Borland, MSVC++ (Win32) and GCC++ (Solaris)
[perl5.git] / x2p / str.h
CommitLineData
79072805 1/* $RCSfile: str.h,v $$Revision: 4.1 $$Date: 92/08/07 18:29:27 $
a687059c 2 *
9607fc9c 3 * Copyright (c) 1991-1997, Larry Wall
a687059c 4 *
d48672a2
LW
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
8d063cd8
LW
7 *
8 * $Log: str.h,v $
8d063cd8
LW
9 */
10
11struct string {
12 char * str_ptr; /* pointer to malloced string */
13 double str_nval; /* numeric value, if any */
14 int str_len; /* allocated size */
15 int str_cur; /* length of str_ptr as a C string */
16 union {
17 STR *str_next; /* while free, link to next free str */
18 } str_link;
19 char str_pok; /* state of str_ptr */
20 char str_nok; /* state of str_nval */
21};
22
23#define Nullstr Null(STR*)
24
25/* the following macro updates any magic values this str is associated with */
26
27#define STABSET(x) (x->str_link.str_magic && stabset(x->str_link.str_magic,x))
28
29EXT STR **tmps_list;
30EXT long tmps_max INIT(-1);
31
9c8d0b29
AD
32double str_2num _(( STR *str ));
33char * str_2ptr _(( STR *str ));
34char * str_append_till _(( STR *str, char *from, int delim, char *keeplist ));
35void str_cat _(( STR *str, char *ptr ));
36void str_chop _(( STR *str, char *ptr ));
37void str_dec _(( STR *str ));
38void str_free _(( STR *str ));
39char * str_gets _(( STR *str, FILE *fp ));
40void str_grow _(( STR *str, int len ));
41void str_inc _(( STR *str ));
42int str_len _(( STR *str ));
43STR * str_make _(( char *s ));
44STR * str_mortal _(( STR *oldstr ));
45void str_ncat _(( STR *str, char *ptr, int len ));
46STR * str_new _(( int len ));
47STR * str_nmake _(( double n ));
48void str_nset _(( STR *str, char *ptr, int len ));
49void str_numset _(( STR *str, double num ));
50void str_replace _(( STR *str, STR *nstr ));
51void str_scat _(( STR *dstr, STR *sstr ));
52void str_set _(( STR *str, char *ptr ));
53void str_sset _(( STR *dstr, STR *sstr ));