CloverBootloader/rEFIt_UEFI/PlatformPOSIX/posix/posix_additions.h
jief666 975ac8f4fb Implement the possibility to cache XString size. Not activated.
Improve unicode_conversions.
Move strlen declaration to string.h.
2021-04-08 18:07:05 +03:00

19 lines
458 B
C

/*
* posix_additions.h
*
* Created on: Feb 5, 2021
* Author: jief
*/
#ifndef PLATFORM_POSIX_POSIX_ADDITIONS_H_
#define PLATFORM_POSIX_POSIX_ADDITIONS_H_
const char* efiStrError(EFI_STATUS errnum);
const char* strguid(EFI_GUID* guid);
//int snwprintf(wchar_t*, size_t len, const char *__restrict format, ...) __attribute__((__format__ (__printf__, 3, 4)));
size_t clover_strlen(const char *str);
#endif /* PLATFORM_POSIX_POSIX_ADDITIONS_H_ */