nckernel  0.1
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Functions
string.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

int memcmp (void *dest, void *src, size_t size)
 두 메모리 버퍼를 비교한다. More...
 
void memcpy (void *dest, void *src, size_t size)
 특정 메모리영역의 데이터를 주어진 크기만큼 복사한다. More...
 
void memset (void *buffer, int data, size_t size)
 특정 메모리 영역을 데이터로 채워 넣는다. More...
 
int strcmp (const char *str1, const char *str2)
 두 문자열을 비교한다. More...
 
char * strcpy (char *dest, const char *src)
 문자열을 복사한다. More...
 
char * strdup (const char *s)
 문자열을 위한 공간을 할당하고 복사한다. More...
 
char * strdupa (const char *s)
 문자열을 복사하되, alloca 를 써서 메모리를 할당한다. More...
 
int strlen (const char *str)
 문자열의 길이를 구한다. More...
 
int strncmp (const char *s1, const char *s2, size_t n)
 문자열을 지정된 길이만큼 비교한다 More...
 
char * strncpy (char *dest, char *src, size_t n)
 문자열을 지정된 길이만큼 복사한다. More...
 
char * strndup (const char *s, size_t n)
 
char * strndupa (const char *s, size_t n)
 문자열을 길이만큼 복사하되, alloca 를 써서 메모리를 할당한다. More...