1/*
2 * Copyright 1993, 1995 Christopher Seiwald.
3 *
4 * This file is part of Jam - see jam.c for Copyright information.
5 */
6
7/*
8 * newstr.h - string manipulation routines
9 *
10 * 11/04/02 (seiwald) - const-ing for string literals
11 */
12
13const char *newstr( const char *string );
14const char *copystr( const char *s );
15void freestr( const char *s );
16void donestr();
17