2001-09-26 20:45:50 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
@deftypefn Supplemental char* strdup (const char *@var{s})
|
|
|
|
|
|
|
|
Returns a pointer to a copy of @var{s} in memory obtained from
|
2001-10-08 00:42:23 +02:00
|
|
|
@code{malloc}, or @code{NULL} if insufficient memory was available.
|
2001-09-26 20:45:50 +02:00
|
|
|
|
|
|
|
@end deftypefn
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2003-04-15 05:02:18 +02:00
|
|
|
#include <ansidecl.h>
|
|
|
|
#ifdef ANSI_PROTOTYPES
|
|
|
|
#include <stddef.h>
|
|
|
|
#else
|
|
|
|
#define size_t unsigned long
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern size_t strlen PARAMS ((const char*));
|
|
|
|
extern PTR malloc PARAMS ((size_t));
|
|
|
|
extern PTR memcpy PARAMS ((PTR, const PTR, size_t));
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
char *
|
|
|
|
strdup(s)
|
2004-01-15 17:34:19 +01:00
|
|
|
const char *s;
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2003-04-15 05:02:18 +02:00
|
|
|
size_t len = strlen (s) + 1;
|
|
|
|
char *result = (char*) malloc (len);
|
|
|
|
if (result == (char*) 0)
|
|
|
|
return (char*) 0;
|
|
|
|
return (char*) memcpy (result, s, len);
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|