openldap/include/ac/string.h

63 lines
1.3 KiB
C
Raw Normal View History

1998-10-25 09:41:42 +08:00
/* Generic string.h */
#ifndef _AC_STRING_H
#define _AC_STRING_H
#ifdef STDC_HEADERS
# include <string.h>
1998-10-25 09:41:42 +08:00
#else
# ifdef HAVE_STRING_H
# include <string.h>
# elif HAVE_STRINGS_H
# include <strings.h>
# endif
# ifdef HAVE_MEMORY_H
# include <memory.h>
# endif
/* we should actually create <ac/stdlib.h> */
# ifdef HAVE_MALLOC_H
# include <malloc.h>
# endif
# ifndef HAVE_STRRCHR
1998-10-25 09:41:42 +08:00
# define strchr index
# define strrchr rindex
# endif
# ifndef HAVE_MEMCPY
# define memcpy(d, s, n) ((void) bcopy ((s), (d), (n)))
# define memmove(d, s, n) ((void) bcopy ((s), (d), (n)))
1998-10-25 09:41:42 +08:00
# endif
#endif
#ifndef HAVE_STRDUP
/* strdup() is missing, declare our own version */
extern char *strdup( const char *s );
#else
/* some systems have strdup, but fail to declare it */
extern char *strdup();
1998-10-25 09:41:42 +08:00
#endif
/*
* some systems fail to declare strcasecmp() and strncasecmp()
* we need them declared so we can obtain pointers to them
*/
extern int strcasecmp(), strncasecmp();
1998-10-25 09:41:42 +08:00
#ifndef SAFEMEMCPY
# if defined( HAVE_MEMMOVE )
# define SAFEMEMCPY( d, s, n ) memmove((d), (s), (n))
# elif defined( HAVE_BCOPY )
1998-10-25 09:41:42 +08:00
# define SAFEMEMCPY( d, s, n ) bcopy((s), (d), (n))
# else
1998-10-25 09:41:42 +08:00
/* nothing left but memcpy() */
# define SAFEMEMCPY( d, s, n ) memcpy((d), (s), (n))
# endif
#endif
1998-10-25 09:41:42 +08:00
#endif /* _AC_STRING_H */