ack/lang/fortran/comp/string.h
dtrg 014be56fb0 Replaced calls to the custom strindex() and strrindex() functions with the
exactly equivalent and standard strchr() and strrchr() functions instead.
2006-07-23 20:01:02 +00:00

17 lines
295 B
C

#ifndef NULL
#define NULL 0
#endif
#define strchr strchr
#define strrchr strrchr
extern char * strcat();
extern char * strchr();
extern int strcmp();
extern char * strcpy();
extern int strlen();
extern char * strncat();
extern int strncmp();
extern char * strncpy();
extern char * strrchr();