/*------------------------------------------------------------------------- * * strdup.c * copies a null-terminated string. * * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION * $Header: /cvsroot/pgsql/src/utils/Attic/strdup.c,v 1.7 2000/01/26 05:58:53 momjian Exp $ * *------------------------------------------------------------------------- */ #include #include #include "strdup.h" char * strdup(char const * string) { char *nstr; nstr = strcpy((char *) malloc(strlen(string) + 1), string); return nstr; }