david/ipxe
david
/
ipxe
Archived
1
0
Fork 0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/wchar.h

30 lines
582 B
C

#ifndef WCHAR_H
#define WCHAR_H
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#include <stddef.h>
typedef void mbstate_t;
/**
* Convert wide character to multibyte sequence
*
* @v buf Buffer
* @v wc Wide character
* @v ps Shift state
* @ret len Number of characters written
*
* This is a stub implementation, sufficient to handle basic ASCII
* characters.
*/
static inline __attribute__ (( always_inline ))
size_t wcrtomb ( char *buf, wchar_t wc, mbstate_t *ps __unused ) {
*buf = wc;
return 1;
}
extern size_t wcslen ( const wchar_t *string );
#endif /* WCHAR_H */