mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-24 11:45:27 +01:00
975ac8f4fb
Improve unicode_conversions. Move strlen declaration to string.h.
19 lines
458 B
C
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_ */
|