regexp engine now undestands some character classes (like :space:) and non-greedy ops
[k8jam.git] / src / newstr.h
blobee445933f7d82b94d5413496fd0872eebc6dc58e
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);
17 extern void freestr (const char *s);
18 extern void donestr (void);
21 #endif