diff options
author | Michael Brown <mcb30@ipxe.org> | 2021-05-18 11:45:24 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2021-05-18 11:45:24 +0100 |
commit | 661093054bcfae16d79404304d6f8318baf1231e (patch) | |
tree | becc12c5729556998fe5c2b19515b58d5f7e6710 /src/include/strings.h | |
parent | 059c4dc688cea6d9398d63ca10f5c00e94ae2159 (diff) | |
download | ipxe-661093054bcfae16d79404304d6f8318baf1231e.tar.gz |
[libc] Add strncasecmp()
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/strings.h')
-rw-r--r-- | src/include/strings.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/strings.h b/src/include/strings.h index fab26dc28..d7e9d6971 100644 --- a/src/include/strings.h +++ b/src/include/strings.h @@ -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 */ |