mirror of
https://github.com/ipxe/ipxe
synced 2025-12-31 15:25:23 +03:00
Commit 58ed3b1 ("[libc] Add support for "%lc" and "%ls" format
specifiers") was missing a file.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
28 lines
521 B
C
28 lines
521 B
C
#ifndef WCHAR_H
|
|
#define WCHAR_H
|
|
|
|
FILE_LICENCE ( GPL2_ONLY );
|
|
|
|
#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;
|
|
}
|
|
|
|
#endif /* WCHAR_H */
|