openldap/include/ac/string.h

79 lines
1.9 KiB
C
Raw Normal View History

1998-10-25 09:41:42 +08:00
/* Generic string.h */
1999-08-30 16:08:00 +08:00
/* $OpenLDAP$ */
1998-12-29 03:51:35 +08:00
/*
2000-05-13 10:25:54 +08:00
* Copyright 1998-2000 The OpenLDAP Foundation, Redwood City, California, USA
1998-12-29 03:51:35 +08:00
* All rights reserved.
*
* Redistribution and use in source and binary forms are permitted only
* as authorized by the OpenLDAP Public License. A copy of this
* license is available at http://www.OpenLDAP.org/license.html or
* in file LICENSE in the top-level directory of the distribution.
*/
1998-10-25 09:41:42 +08:00
#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
# ifndef HAVE_STRRCHR
# undef strchr
1998-10-25 09:41:42 +08:00
# define strchr index
# undef strrchr
1998-10-25 09:41:42 +08:00
# define strrchr rindex
# endif
# ifndef HAVE_MEMCPY
# undef memcpy
# define memcpy(d, s, n) ((void) bcopy ((s), (d), (n)))
# undef memmove
# define memmove(d, s, n) ((void) bcopy ((s), (d), (n)))
1998-10-25 09:41:42 +08:00
# endif
#endif
/* use ldap_pvt_strtok instead of strtok or strtok_r! */
LDAP_F(char *) ldap_pvt_strtok LDAP_P(( char *str, const char *delim,
1999-11-28 07:40:08 +08:00
char **pos ));
#ifndef HAVE_STRDUP
/* strdup() is missing, declare our own version */
# undef strdup
# define strdup(s) ber_strdup(s)
#else
/* some systems fail to declare strdup */
LDAP_LIBC_F(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
*/
1999-11-28 07:40:08 +08:00
/* In Mingw32, strcasecmp is not in the C library, so we don't LIBC_F it */
int (strcasecmp)();
int (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
#endif /* _AC_STRING_H */