diff options
author | Marvin Borner | 2019-10-26 22:15:29 +0200 |
---|---|---|
committer | Marvin Borner | 2019-10-26 22:15:29 +0200 |
commit | 5d4180c67cea08bb76eebde6b41b8935e60fed98 (patch) | |
tree | 1f3bd2be8e20dc754dcc73af36684fdc3642d7ba /src/kernel/lib/lib.h | |
parent | b2cf27bb1d8239a7ccc55c29df996370c8f1bed6 (diff) |
Improved VESA and fixed warnings
Diffstat (limited to 'src/kernel/lib/lib.h')
-rw-r--r-- | src/kernel/lib/lib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/lib/lib.h b/src/kernel/lib/lib.h index 6963498..de09e0f 100644 --- a/src/kernel/lib/lib.h +++ b/src/kernel/lib/lib.h @@ -14,7 +14,7 @@ size_t strlen(const char *str); * Compare two strings * @param s1 The first string pointer * @param s2 The second string pointer - * @return The length difference between s1 and s2 + * @return Non-zero if not equal */ size_t strcmp(const char *s1, const char *s2); |