strdup.c
资源名称:tcpmp.rar [点击查看]
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:0k
源码类别:
Windows CE
开发平台:
C/C++
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- #include <stdlib.h>
- #include <string.h>
- char* strdup(const char *__s)
- {
- char *charptr;
- if (!__s)
- return NULL;
- charptr=(char *)malloc(sizeof(char) * (strlen(__s) + 1));
- if (charptr)
- strcpy(charptr, __s);
- return charptr;
- }