mbsinit.c revision 128004
1102050Stjr/*-
2128004Stjr * Copyright (c) 2002-2004 Tim J. Robbins.
3102050Stjr * All rights reserved.
4102050Stjr *
5102050Stjr * Redistribution and use in source and binary forms, with or without
6102050Stjr * modification, are permitted provided that the following conditions
7102050Stjr * are met:
8102050Stjr * 1. Redistributions of source code must retain the above copyright
9102050Stjr *    notice, this list of conditions and the following disclaimer.
10102050Stjr * 2. Redistributions in binary form must reproduce the above copyright
11102050Stjr *    notice, this list of conditions and the following disclaimer in the
12102050Stjr *    documentation and/or other materials provided with the distribution.
13102050Stjr *
14102050Stjr * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15102050Stjr * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16102050Stjr * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17102050Stjr * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18102050Stjr * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19102050Stjr * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20102050Stjr * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21102050Stjr * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22102050Stjr * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23102050Stjr * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24102050Stjr * SUCH DAMAGE.
25102050Stjr */
26102050Stjr
27102050Stjr#include <sys/cdefs.h>
28102050Stjr__FBSDID("$FreeBSD: head/lib/libc/locale/mbsinit.c 128004 2004-04-07 10:48:19Z tjr $");
29102050Stjr
30102050Stjr#include <wchar.h>
31102050Stjr
32128004Stjrextern int (*__mbsinit)(const mbstate_t *);
33128004Stjr
34102050Stjrint
35128004Stjrmbsinit(const mbstate_t *ps)
36102050Stjr{
37102050Stjr
38128004Stjr	return (__mbsinit(ps));
39102050Stjr}
40