1
1
mc/slang/slwcwidth.c

16 строки
234 B
C
Исходник Обычный вид История

#include "slinclud.h"
#include <ctype.h>
#include "slang.h"
#include "_slang.h"
#define DEFINE_PSLWC_WIDTH_TABLE
#include "slwcwidth.h"
int SLwchar_wcwidth (SLwchar_Type ch)
{
int w;
SL_WIDTH_ALOOKUP(w,ch);
return w;
}