]> git.sur5r.net Git - openldap/blobdiff - include/ac/string.h
Add reference to slappasswd(8)
[openldap] / include / ac / string.h
index 6a64074e6fa8623f69b6726897825767398ca3a4..bb1c10b836598cfa772eab64194b52da5c95c892 100644 (file)
@@ -1,4 +1,14 @@
 /* Generic string.h */
+/* $OpenLDAP$ */
+/*
+ * Copyright 1998-2000 The OpenLDAP Foundation, Redwood City, California, USA
+ * 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.
+ */
 
 #ifndef _AC_STRING_H
 #define _AC_STRING_H
 
 #      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
+#              undef strchr
 #              define strchr index
+#              undef strrchr
 #              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)))
 #      endif
 #endif
 
+/* use ldap_pvt_strtok instead of strtok or strtok_r! */
+LIBLDAP_F(char *) ldap_pvt_strtok LDAP_P(( char *str, const char *delim,
+                                          char **pos ));
+
 #ifndef HAVE_STRDUP
        /* strdup() is missing, declare our own version */
-       extern char *strdup( const char *s );
+#      undef strdup
+#      define strdup(s) ber_strdup(s)
 #else
-       /* some systems have strdup, but fail to declare it */
-       extern char *strdup();
+       /* some systems fail to declare strdup */
+       LIBC_F(char *) (strdup)();
 #endif
 
 /*
  * some systems fail to declare strcasecmp() and strncasecmp()
  * we need them declared so we can obtain pointers to them
  */
-extern int strcasecmp(), strncasecmp();
+
+/* In Mingw32, strcasecmp is not in the C library, so we don't LIBC_F it */
+int (strcasecmp)();
+int (strncasecmp)();
 
 #ifndef SAFEMEMCPY
 #      if defined( HAVE_MEMMOVE )
@@ -58,5 +75,4 @@ extern int strcasecmp(), strncasecmp();
 #      endif
 #endif
 
-
 #endif /* _AC_STRING_H */