String.h: differenze tra le versioni
Contenuto cancellato Contenuto aggiunto
Riga 64:
|compares two strings using the current [[locale]]'s [[collating order]]
|-
|<code>char *[[strcpy]](char *s1, const char *s2);</code>
|Copia la stringa ''s2'' nella stringa ''s1'', incluso il carattere di terminazione ''\0''.
|-
|<code>char *[[strncpy]](char *s1, const char *s2, size_t n);</code>
|Copia al massimo ''n'' caratteri della stringa ''s2'' in ''s1''.
|-
|<code>char *[[strerror]](int n);</code>
|Restituisce un puntatore alla stringa che corrisponde all'errore ''n''.
|-
|<code>size_t [[strlen]](const char *s);</code>
|Restituisce la lunghezza della stringa ''s''.
|-
|<code>size_t [[strspn]](const char *s, const char *accept);</code>
|