strdup.c

来自「speech signal process tools」· C语言 代码 · 共 18 行

C
18
字号
#ifndef lint  static char rcsid[] = "$Header: /home/beldar/stan/sphere/RCS/spmalloc.c,v 1.4 1993/03/25 00:20:51 stan Exp stan $";#endif/* LINTLIBRARY *//* File: strdup.c */#include <stdio.h>#include <stdlib.h>#include <sys/types.h>char *strdup(p)char *p;{    return((char *)mtrf_strdup(p));}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?