File: strdup.c

package info (click to toggle)
courier 0.60.0-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 52,288 kB
  • ctags: 12,677
  • sloc: ansic: 165,348; cpp: 24,820; sh: 16,410; perl: 6,839; makefile: 3,621; yacc: 289; sed: 16
file content (19 lines) | stat: -rw-r--r-- 308 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
** Copyright 1998 - 1999 Double Precision, Inc.  See COPYING for
** distribution information.
*/


/*
** $Id: strdup.c,v 1.2 1999/12/08 06:00:38 mrsam Exp $
*/
#include	<stdlib.h>
#include	<string.h>

char *strdup(const char *p)
{
char *s;

	if ((s=malloc(strlen(p)+1)) != 0)	strcpy(s, p);
	return (s);
}