Strdup - overview

Nasza ocena:

3
Wyświetleń: 490
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
Strdup  - overview - strona 1

Fragment notatki:

Strdup • strdup creates a copy of the given string, allocating memory for it by a call to malloc : char *strdup(char *s) /* make a duplicate of s */ { char *p; p = (char *) malloc(strlen(s)+1); /* +1 for '\0' */ if (p != NULL) strcpy(p, s); return p; /* error handling should be done by the caller */ } ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz