From: solar Date: Sun, 18 Jan 2004 20:16:54 +0000 (+0000) Subject: Fixed strspn() doc. X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=eb0eba2f8fdea96b580ce6635d8e806fbf71038b;p=fw%2Fpdclib Fixed strspn() doc. git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@27 546481bc-9713-0410-bf18-d3337bbf4a3e --- diff --git a/includes/string.h b/includes/string.h index d28e18e..e7e6921 100644 --- a/includes/string.h +++ b/includes/string.h @@ -202,7 +202,7 @@ int strncmp( const char * src_1, const char * src_2, size_t n ); char * strncpy( char * restrict dest, const char * restrict src, size_t n ); /** STRing SPaN. Compares two C strings, determining the length of the - * substring where both strings are equal. + * substring containing only characters from the second string. * @param src_1 The first string to be compared. * @param src_2 The second string to be compared. * @return The length of the identical substring.