perl 3.0 patch #22 patch #19, continued
[p5sagit/p5-mst-13.2.git] / util.h
1 /* $Header: util.h,v 3.0.1.2 89/11/17 15:48:01 lwall Locked $
2  *
3  *    Copyright (c) 1989, Larry Wall
4  *
5  *    You may distribute under the terms of the GNU General Public License
6  *    as specified in the README file that comes with the perl 3.0 kit.
7  *
8  * $Log:        util.h,v $
9  * Revision 3.0.1.2  89/11/17  15:48:01  lwall
10  * patch5: BZERO separate from BCOPY now
11  * 
12  * Revision 3.0.1.1  89/10/26  23:28:25  lwall
13  * patch1: declared bcopy if necessary
14  * 
15  * Revision 3.0  89/10/18  15:33:18  lwall
16  * 3.0 baseline
17  * 
18  */
19
20 EXT int *screamfirst INIT(Null(int*));
21 EXT int *screamnext INIT(Null(int*));
22
23 char    *safemalloc();
24 char    *saferealloc();
25 char    *cpytill();
26 char    *instr();
27 char    *fbminstr();
28 char    *screaminstr();
29 void    fbmcompile();
30 char    *savestr();
31 void    setenv();
32 int     envix();
33 void    growstr();
34 char    *ninstr();
35 char    *rninstr();
36 char    *nsavestr();
37 FILE    *mypopen();
38 int     mypclose();
39 #ifndef MEMCPY
40 #ifndef BCOPY
41 char    *bcopy();
42 #endif
43 #ifndef BZERO
44 char    *bzero();
45 #endif
46 #endif