1999-05-03 15:29:11 +08:00
|
|
|
/* xstrdup.c -- Duplicate a string in memory, using xmalloc.
|
|
|
|
This trivial function is in the public domain.
|
|
|
|
Ian Lance Taylor, Cygnus Support, December 1995. */
|
|
|
|
|
2001-09-27 02:45:50 +08:00
|
|
|
/*
|
|
|
|
|
|
|
|
@deftypefn Replacement char* xstrdup (const char *@var{s})
|
|
|
|
|
|
|
|
Duplicates a character string without fail, using @code{xmalloc} to
|
|
|
|
obtain memory.
|
|
|
|
|
|
|
|
@end deftypefn
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2008-10-09 00:53:29 +08:00
|
|
|
#include <sys/types.h>
|
1999-05-03 15:29:11 +08:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
#include <string.h>
|
2005-03-25 12:27:21 +08:00
|
|
|
#else
|
|
|
|
# ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
# endif
|
1999-05-03 15:29:11 +08:00
|
|
|
#endif
|
|
|
|
#include "ansidecl.h"
|
|
|
|
#include "libiberty.h"
|
|
|
|
|
|
|
|
char *
|
2005-03-28 10:09:01 +08:00
|
|
|
xstrdup (const char *s)
|
1999-05-03 15:29:11 +08:00
|
|
|
{
|
|
|
|
register size_t len = strlen (s) + 1;
|
2005-05-25 05:01:33 +08:00
|
|
|
register char *ret = XNEWVEC (char, len);
|
2005-03-25 12:27:21 +08:00
|
|
|
return (char *) memcpy (ret, s, len);
|
1999-05-03 15:29:11 +08:00
|
|
|
}
|