feat: expand user mode, add DOOM game, add manpages
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#ifndef _LIBC_STRINGS_H
|
||||
#define _LIBC_STRINGS_H
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
int strcasecmp(const char *s1, const char *s2);
|
||||
int strncasecmp(const char *s1, const char *s2, size_t n);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _LIBC_STRINGS_H */
|
||||
Reference in New Issue
Block a user