strdup.c
上传用户:s81996212
上传日期:2007-01-04
资源大小:722k
文件大小:0k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. /*
  2. ** Copyright 1998 - 1999 Double Precision, Inc.  See COPYING for
  3. ** distribution information.
  4. */
  5. /*
  6. ** $Id: strdup.c,v 1.2 1999/12/08 06:00:38 mrsam Exp $
  7. */
  8. #include <stdlib.h>
  9. #include <string.h>
  10. char *strdup(const char *p)
  11. {
  12. char *s;
  13. if ((s=malloc(strlen(p)+1)) != 0) strcpy(s, p);
  14. return (s);
  15. }