Print this page
2964 need POSIX 2008 locale object support
Reviewed by: Robert Mustacchi <rm@joyent.com>

*** 1,6 **** --- 1,7 ---- /* + * Copyright 2013 Garrett D'Amore <garrett@damore.org> * Copyright 2010 Nexenta Systems, Inc. All rights reserved. * Copyright (c) 2002-2004 Tim J. Robbins. * All rights reserved. * * Redistribution and use in source and binary forms, with or without
*** 25,40 **** * SUCH DAMAGE. */ #include "lint.h" #include <wchar.h> #include "mblocal.h" size_t ! mbrlen(const char *_RESTRICT_KYWD s, size_t n, mbstate_t *_RESTRICT_KYWD ps) { static mbstate_t mbs; if (ps == NULL) ps = &mbs; ! return (__mbrtowc(NULL, s, n, ps)); } --- 26,50 ---- * SUCH DAMAGE. */ #include "lint.h" #include <wchar.h> + #include <locale.h> + #include <xlocale.h> #include "mblocal.h" size_t ! mbrlen_l(const char *_RESTRICT_KYWD s, size_t n, mbstate_t *_RESTRICT_KYWD ps, ! locale_t loc) { static mbstate_t mbs; if (ps == NULL) ps = &mbs; ! return (mbrtowc_l(NULL, s, n, ps, loc)); ! } ! ! size_t ! mbrlen(const char *_RESTRICT_KYWD s, size_t n, mbstate_t *_RESTRICT_KYWD ps) ! { ! return (mbrlen_l(s, n, ps, uselocale(NULL))); }