blob: 84a4d7b6da5940826c2997d263e65bcaa130de5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* Copyright 1993, 1995 Christopher Seiwald.
*
* This file is part of Jam - see jam.c for Copyright information.
*/
/*
* newstr.h - string manipulation routines
*/
char * copystr ( char * );
void freestr ( char * );
char * newstr ( char * );
void str_done();
|