mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-28 10:39:34 -05:00
21 lines
378 B
C
21 lines
378 B
C
|
|
/* Generic string.h */
|
||
|
|
|
||
|
|
#ifndef _AC_STRING_H
|
||
|
|
#define _AC_STRING_H
|
||
|
|
|
||
|
|
#if STDC_HEADERS
|
||
|
|
# include <string.h>
|
||
|
|
#else
|
||
|
|
# ifndef HAVE_STRCHR
|
||
|
|
# define strchr index
|
||
|
|
# define strrchr rindex
|
||
|
|
# endif
|
||
|
|
char *strchr (), *strrchr ();
|
||
|
|
# ifndef HAVE_MEMCPY
|
||
|
|
# define memcpy(d, s, n) bcopy ((s), (d), (n))
|
||
|
|
# define memmove(d, s, n) bcopy ((s), (d), (n))
|
||
|
|
# endif
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* _AC_STRING_H */
|