22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
29 #include "lint.h"
30 #include <locale.h>
31 #include <limits.h>
32 #include <stdlib.h>
33 #include <wchar.h>
34 #include "mblocal.h"
35 #include "localeimpl.h"
36 #include "lctype.h"
37
38 size_t
39 mbsrtowcs_l(wchar_t *_RESTRICT_KYWD dst, const char **_RESTRICT_KYWD src,
40 size_t len, mbstate_t *_RESTRICT_KYWD ps, locale_t loc)
41 {
42 return (loc->ctype->lc_mbsnrtowcs(dst, src, ULONG_MAX, len, ps));
43 }
44
45 size_t
46 mbsrtowcs(wchar_t *_RESTRICT_KYWD dst, const char **_RESTRICT_KYWD src,
47 size_t len, mbstate_t *_RESTRICT_KYWD ps)
48 {
49 return (mbsrtowcs_l(dst, src, len, ps, uselocale(NULL)));
50 }
|
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
29 #include "lint.h"
30 #include <locale.h>
31 #include <limits.h>
32 #include <stdlib.h>
33 #include <wchar.h>
34 #include "mblocal.h"
35 #include "localeimpl.h"
36 #include "lctype.h"
37
38 size_t
39 mbsrtowcs_l(wchar_t *_RESTRICT_KYWD dst, const char **_RESTRICT_KYWD src,
40 size_t len, mbstate_t *_RESTRICT_KYWD ps, locale_t loc)
41 {
42 static mbstate_t mbs;
43
44 if (ps == NULL)
45 ps = &mbs;
46
47 return (loc->ctype->lc_mbsnrtowcs(dst, src, ULONG_MAX, len, ps));
48 }
49
50 size_t
51 mbsrtowcs(wchar_t *_RESTRICT_KYWD dst, const char **_RESTRICT_KYWD src,
52 size_t len, mbstate_t *_RESTRICT_KYWD ps)
53 {
54 return (mbsrtowcs_l(dst, src, len, ps, uselocale(NULL)));
55 }
|