summaryrefslogtreecommitdiffhomepage
path: root/src/u16_mbsinit.c
blob: e7d9272d3a7ecd2dfd867015edec6e75af66ac60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*******************************************************************/
/*  u16ports: u16 variants of wide character string functions.     */
/*  Copyright (C) 2017  Z. Gilboa                                  */
/*  Released under the Standard MIT License; see COPYING.U16PORTS. */
/*******************************************************************/

#include <wchar.h>
#include <u16ports/u16ports.h>

int u16_mbsinit(const mbstate_t * ps)
{
	return mbsinit(ps);
}