Home | History | Annotate | Download | only in m4

Lines Matching full:wcwidth

0 # wcwidth.m4 serial 23
12 dnl Persuade glibc <wchar.h> to declare wcwidth().
19 AC_CHECK_FUNCS_ONCE([wcwidth])
21 AC_CHECK_DECLS([wcwidth], [], [], [[
22 /* AIX 3.2.5 declares wcwidth in <string.h>. */
39 dnl On Mac OS X 10.3, wcwidth(0x0301) (COMBINING ACUTE ACCENT) returns 1.
40 dnl On OpenBSD 5.0, wcwidth(0x05B0) (HEBREW POINT SHEVA) returns 1.
41 dnl On OSF/1 5.1, wcwidth(0x200B) (ZERO WIDTH SPACE) returns 1.
43 AC_CACHE_CHECK([whether wcwidth works reasonably in UTF-8 locales],
49 /* AIX 3.2.5 declares wcwidth in <string.h>. */
64 int wcwidth (int);
71 if (wcwidth (0x0301) > 0)
73 if (wcwidth (0x05B0) > 0)
75 if (wcwidth (0x200B) > 0)
100 dnl have the wcwidth function, then it does not declare it.