1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or http://www.opensolaris.org/os/licensing.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright (c) 1996, by Sun Microsystems, Inc.
24  * All rights reserved.
25  */
26 
27 /*
28  * Copyright 1992 by Mortice Kern Systems Inc.  All rights reserved.
29  *
30  */
31 #ifdef M_RCSID
32 #ifndef lint
33 static char rcsID[] = "$Header: /rd/src/libc/mse/RCS/restart.c,v 1.1 1992/12/15 10:59:56 alex Exp alex $";
34 #endif /*lint*/
35 #endif /*M_RCSID*/
36 
37 #include <mks.h>
38 #include <stdlib.h>
39 #include <wchar.h>
40 
41 /*f
42  * Restartable multibyte routines, for a system without state.
43  */
44 int
mbrtowc(wchar_t * wc,const char * mb,size_t n,mbstate_t * ps)45 mbrtowc(wchar_t *wc, const char *mb, size_t n, mbstate_t *ps)
46 {
47 	return mbtowc(wc, mb, n);
48 }
49 
50 int
wcrtomb(char * s,wchar_t wc,mbstate_t * ps)51 wcrtomb(char *s, wchar_t wc, mbstate_t *ps)
52 {
53 	return wctomb(s, wc);
54 }
55