|
ncloader
0.1
|
#include <sys/types.h>#include <stdio.h>#include <stddef.h>#include <string.h>#include <bootm.h>
strdup.c에 대한 include 의존 그래프함수 | |
| char * | strdup (const char *s) |
| 문자열을 위한 공간을 할당하고 복사한다. 더 자세히 ... | |
| char * | strndup (const char *s, size_t n) |
| char * | strdupa (const char *s) |
| 문자열을 복사하되, alloca 를 써서 메모리를 할당한다. 더 자세히 ... | |
| char * | strndupa (const char *s, size_t n) |
| 문자열을 길이만큼 복사하되, alloca 를 써서 메모리를 할당한다. 더 자세히 ... | |