built-in jambase is packed now
[k8jam.git] / src / newstr.h
blobaa30c72591b8ed290912ded4813d3eae1a1227e2
1 /*
2 * Copyright 1993, 1995 Christopher Seiwald.
4 * This file is part of Jam - see jam.c for Copyright information.
5 */
6 /*
7 * newstr.h - string manipulation routines
9 * 11/04/02 (seiwald) - const-ing for string literals
11 #ifndef JAMH_NEWSTR_H
12 #define JAMH_NEWSTR_H
15 extern const char *newstr (const char *string);
16 extern const char *copystr (const char *s) JAMFA_CONST;
17 extern void freestr (const char *s) JAMFA_CONST;
18 extern void donestr (void);
21 #endif