17 lines
586 B
C
17 lines
586 B
C
#ifndef COSMOPOLITAN_LIBC_UNICODE_UNICODE_H_
|
|
#define COSMOPOLITAN_LIBC_UNICODE_UNICODE_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
int wcwidth(wchar_t) pureconst;
|
|
int wcswidth(const wchar_t *) strlenesque;
|
|
int wcsnwidth(const wchar_t *, size_t) strlenesque;
|
|
int strwidth(const char *) strlenesque;
|
|
int strnwidth(const char *, size_t) strlenesque;
|
|
int strwidth16(const char16_t *) strlenesque;
|
|
int strnwidth16(const char16_t *, size_t) strlenesque;
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_UNICODE_UNICODE_H_ */
|