binutils-gdb/libiberty/xstrdup.c

37 lines
720 B
C
Raw Normal View History

1999-05-03 09:29:11 +02: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-26 20:45:50 +02: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 09:29:11 +02:00
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h>
1999-05-03 09:29:11 +02:00
#ifdef HAVE_STRING_H
#include <string.h>
2005-03-25 05:27:21 +01:00
#else
# ifdef HAVE_STRINGS_H
# include <strings.h>
# endif
1999-05-03 09:29:11 +02:00
#endif
#include "ansidecl.h"
#include "libiberty.h"
char *
2005-03-28 04:09:01 +02:00
xstrdup (const char *s)
1999-05-03 09:29:11 +02:00
{
register size_t len = strlen (s) + 1;
2005-05-24 23:01:33 +02:00
register char *ret = XNEWVEC (char, len);
2005-03-25 05:27:21 +01:00
return (char *) memcpy (ret, s, len);
1999-05-03 09:29:11 +02:00
}