mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 17:49:59 -05:00
32 lines
739 B
C
32 lines
739 B
C
/* Generic string.h */
|
|
|
|
#ifndef _AC_STRING_H
|
|
#define _AC_STRING_H
|
|
|
|
#ifdef 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
|
|
|
|
#if defined( HAVE_MEMMOVE )
|
|
#define SAFEMEMCPY( d, s, n ) memmove((s), (d), (n))
|
|
#elif defined( HAVE_BCOPY )
|
|
#define SAFEMEMCPY( d, s, n ) bcopy((s), (d), (n))
|
|
#elif defined( MACOS )
|
|
#define SAFEMEMCPY( d, s, n ) BlockMoveData((Ptr)(s), (Ptr)(d), (n))
|
|
#else
|
|
/* nothing left but memcpy() */
|
|
#define SAFEMEMCPY( d, s, n ) memcpy((s), (d), (n))
|
|
#endif
|
|
|
|
#endif /* _AC_STRING_H */
|