[libc] Add strncasecmp()

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown
2021-05-18 11:45:24 +01:00
parent 059c4dc688
commit 661093054b
3 changed files with 26 additions and 1 deletions

View File

@@ -189,5 +189,7 @@ bzero ( void *dest, size_t len ) {
}
int __pure strcasecmp ( const char *first, const char *second ) __nonnull;
int __pure strncasecmp ( const char *first, const char *second,
size_t max ) __nonnull;
#endif /* _STRINGS_H */