mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-24 11:45:27 +01:00
10 lines
193 B
C
10 lines
193 B
C
#ifndef __CLOVER_WCHAR_H__
|
|
#define __CLOVER_WCHAR_H__
|
|
|
|
#include "stddef.h" // for size_t
|
|
|
|
size_t wcslen(const wchar_t *s);
|
|
int wcsncmp(const wchar_t *s1, const wchar_t * s2, size_t n);
|
|
|
|
#endif
|