17 lines
186 B
C
Vendored
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
|