1998-10-25 11:15:45 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#ifndef HAVE_STRDUP
|
|
|
|
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
#include <stdlib.h>
|
1998-10-25 11:15:45 +08:00
|
|
|
#include <ac/string.h>
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
#include "lutil.h"
|
1998-10-25 11:15:45 +08:00
|
|
|
|
1998-11-19 00:13:51 +08:00
|
|
|
char *(strdup)( const char *s )
|
1998-10-25 11:15:45 +08:00
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
if ( (p = (char *) malloc( strlen( s ) + 1 )) == NULL )
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
return( (char *)0 );
|
1998-10-25 11:15:45 +08:00
|
|
|
|
|
|
|
strcpy( p, s );
|
|
|
|
|
|
|
|
return( p );
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* !strdup */
|