Files
2026-09-16 14:07:40 +08:00

17 lines
186 B
C
Vendored

#ifndef WCWIDTH_H_INCLUDED
#define WCWIDTH_H_INCLUDED
#include <stdlib.h>
#ifdef __cplusplus
extern "C"
{
int wcwidth(wchar_t ucs);
}
#else
int wcwidth(wchar_t ucs);
#endif
#endif