blob: 1e503353291720a01072f452b1a6c92a8e4f9396 (
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 SysDeer Technologies, LLC */
/* 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);
}
|