X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/1f2f436a38f7ae2d39a943ad2898d8fed4ed2e58..974e388456677d82eb6d10d4fd72390641a5bdfe:/locale/FreeBSD/wcwidth.c diff --git a/locale/FreeBSD/wcwidth.c b/locale/FreeBSD/wcwidth.c index 587862e..ae533e7 100644 --- a/locale/FreeBSD/wcwidth.c +++ b/locale/FreeBSD/wcwidth.c @@ -38,6 +38,8 @@ #include __FBSDID("$FreeBSD: src/lib/libc/locale/wcwidth.c,v 1.8 2007/01/09 00:28:01 imp Exp $"); +#include "xlocale_private.h" + #include #undef wcwidth @@ -46,5 +48,13 @@ int wcwidth(wchar_t wc) { - return (__wcwidth(wc)); + return (__wcwidth_l(wc, __current_locale())); +} + +int +wcwidth_l(wchar_t wc, locale_t loc) +{ + + NORMALIZE_LOCALE(loc); + return (__wcwidth_l(wc, loc)); }