1 /* RCS $Id: string.h,v 1.1.1.1 2000-09-22 15:33:34 hr Exp $
4 -- string function headers
7 -- Supply correct definitions for certain string functions.
10 -- Dennis Vadura, dvadura@dmake.wticorp.com
13 -- http://dmake.wticorp.com/
16 -- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
18 -- This program is NOT free software; you can redistribute it and/or
19 -- modify it under the terms of the Software License Agreement Provided
20 -- in the file <distribution-root>/readme/license.txt.
23 -- Use cvs log to obtain detailed change logs.
28 ** BSD does this wrong
30 #include </usr/include/string.h>
33 extern char* strpbrk
ANSI((const char* src
, const char* any
));
36 #define strchr(str,c) index(str,c)
37 #define strrchr(str,c) rindex(str,c)
39 char *strchr
ANSI((char*, char));
40 char *strrchr
ANSI((char*, char));