diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-09-02 17:18:03 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-09-02 17:18:03 +0200 |
commit | 8825b5f85059d93f5e85a07aa5c092440c166142 (patch) | |
tree | 6381d75cdfa871bf81fc2dd5087c3bc49f071766 /src/wchar/wcscmp.c | |
parent | automate some parts of intconf (diff) | |
download | slibc-8825b5f85059d93f5e85a07aa5c092440c166142.tar.gz slibc-8825b5f85059d93f5e85a07aa5c092440c166142.tar.bz2 slibc-8825b5f85059d93f5e85a07aa5c092440c166142.tar.xz |
typo
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/wchar/wcscmp.c')
-rw-r--r-- | src/wchar/wcscmp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wchar/wcscmp.c b/src/wchar/wcscmp.c index 7539458..aa3cdf3 100644 --- a/src/wchar/wcscmp.c +++ b/src/wchar/wcscmp.c @@ -24,7 +24,7 @@ /** * Compare two memory segments alphabetically in a case sensitive manner. * - * @param a A negetive value is returned if this is the lesser. + * @param a A negative value is returned if this is the lesser. * @param b A positive value is returned if this is the lesser. * @param size The size of the segments. * @return Zero is returned if `a` and `b` are equal, otherwise, @@ -44,7 +44,7 @@ int wmemcmp(const wchar_t* a, const wchar_t* b, size_t size) /** * Compare two strings alphabetically in a case sensitive manner. * - * @param a A negetive value is returned if this is the lesser. + * @param a A negative value is returned if this is the lesser. * @param b A positive value is returned if this is the lesser. * @return Zero is returned if `a` and `b` are equal, otherwise, * see the specifications for `a` and `b`. @@ -64,7 +64,7 @@ int wcscmp(const wchar_t* a, const wchar_t* b) * * This is a GNU-compliant slibc extension. * - * @param a A negetive value is returned if this is the lesser. + * @param a A negative value is returned if this is the lesser. * @param b A positive value is returned if this is the lesser. * @return Zero is returned if `a` and `b` are equal, otherwise, * see the specifications for `a` and `b`. @@ -80,7 +80,7 @@ int wcscasecmp(const wchar_t* a, const wchar_t* b) * * This is a GNU-compliant slibc extension. * - * @param a A negetive value is returned if this is the lesser. + * @param a A negative value is returned if this is the lesser. * @param b A positive value is returned if this is the lesser. * @param length The maximum number of characters to compare. * @return Zero is returned if `a` and `b` are equal, otherwise, @@ -102,7 +102,7 @@ int wcsncmp(const wchar_t* a, const wchar_t* b, size_t length) * * This is a GNU-compliant slibc extension. * - * @param a A negetive value is returned if this is the lesser. + * @param a A negative value is returned if this is the lesser. * @param b A positive value is returned if this is the lesser. * @param length The maximum number of characters to compare. * @return Zero is returned if `a` and `b` are equal, otherwise, |