ack/lang/fortran/comp/string.h

17 lines
295 B
C
Raw Normal View History

1991-10-07 16:35:03 +00:00
#ifndef NULL
#define NULL 0
#endif
#define strchr strchr
#define strrchr strrchr
1991-10-07 16:35:03 +00:00
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();