From: Kurt Zeilenga Date: Sun, 24 Jan 1999 01:07:52 +0000 (+0000) Subject: Forgot to add new string.c. X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~707 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=97a66488324aea1cc8ebcbaea3b022f800085866;p=openldap Forgot to add new string.c. --- diff --git a/libraries/libldap/string.c b/libraries/libldap/string.c new file mode 100644 index 0000000000..a251a660cc --- /dev/null +++ b/libraries/libldap/string.c @@ -0,0 +1,26 @@ +/* + * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved. + * COPYING RESTRICTIONS APPLY, see COPYRIGHT file + */ + +#include "portable.h" + +#include +#include +#include + +#include "ldap-int.h" + +char * +(ldap_pvt_strdup)( const char *s ) +{ + char *p; + int len; + len = strlen( s ) + 1; + if ( (p = (char *) malloc( len )) == NULL ) + return( (char *)0 ); + + memcpy( p, s, len ); + + return( p ); +}