CloverBootloader/rEFIt_UEFI/PlatformEFI/posix/strings.h
2021-04-03 13:55:25 +03:00

26 lines
352 B
C

//
// strings.h
// CloverX64
//
// Created by Jief on 01/02/2021.
//
#ifndef strings_h
#define strings_h
//#include <stdio.h>
#include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif
int strncasecmp(const char* s1, const char* s2, size_t n);
int strcasecmp(const char* s1, const char* s2);
#ifdef __cplusplus
}
#endif
#endif /* strings_h */