mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-05 08:56:16 +01:00
Correct to docs for g_strcmp0
Don't promise to return -1 or 1 - we fall back to strcmp which does not guarantee this. https://bugzilla.gnome.org/show_bug.cgi?id=685037
This commit is contained in:
parent
f3f3f4a412
commit
7c045e3423
@ -1973,11 +1973,11 @@ g_assertion_message_error (const char *domain,
|
||||
* @str1: (allow-none): a C string or %NULL
|
||||
* @str2: (allow-none): another C string or %NULL
|
||||
*
|
||||
* Compares @str1 and @str2 like strcmp(). Handles %NULL
|
||||
* Compares @str1 and @str2 like strcmp(). Handles %NULL
|
||||
* gracefully by sorting it before non-%NULL strings.
|
||||
* Comparing two %NULL pointers returns 0.
|
||||
*
|
||||
* Returns: -1, 0 or 1, if @str1 is <, == or > than @str2.
|
||||
* Returns: an integer less than, equal to, or greater than zero, if @str1 is <, == or > than @str2.
|
||||
*
|
||||
* Since: 2.16
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user