]> git.sur5r.net Git - openldap/blobdiff - include/ac/string.h
Import headers with updated notices
[openldap] / include / ac / string.h
index bb1c10b836598cfa772eab64194b52da5c95c892..8aad76eab9647d2435edacdb87c9cfba3c62fb07 100644 (file)
@@ -1,13 +1,14 @@
 /* Generic string.h */
 /* $OpenLDAP$ */
 /*
- * Copyright 1998-2000 The OpenLDAP Foundation, Redwood City, California, USA
+ * Copyright 1998-2001 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.
+ * Redistribution and use in source and binary forms, with or without
+ * modification, 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
@@ -43,7 +44,7 @@
 #endif
 
 /* use ldap_pvt_strtok instead of strtok or strtok_r! */
-LIBLDAP_F(char *) ldap_pvt_strtok LDAP_P(( char *str, const char *delim,
+LDAP_F(char *) ldap_pvt_strtok LDAP_P(( char *str, const char *delim,
                                           char **pos ));
 
 #ifndef HAVE_STRDUP
@@ -52,7 +53,7 @@ LIBLDAP_F(char *) ldap_pvt_strtok LDAP_P(( char *str, const char *delim,
 #      define strdup(s) ber_strdup(s)
 #else
        /* some systems fail to declare strdup */
-       LIBC_F(char *) (strdup)();
+       LDAP_LIBC_F(char *) (strdup)();
 #endif
 
 /*
@@ -75,4 +76,10 @@ int (strncasecmp)();
 #      endif
 #endif
 
+#define AC_MEMCPY( d, s, n ) (SAFEMEMCPY((d),(s),(n)))
+#define AC_FMEMCPY( d, s, n ) do { \
+               if((n) == 1) *((char*)(d)) = *((char*)(s)); \
+               else AC_MEMCPY( (d), (s), (n) ); \
+       } while(0)
+
 #endif /* _AC_STRING_H */