USB device can now be unbind
[AROS.git] / compiler / stdc / mbstowcs.c
blobe7ebb4406b03627b3e0afbe136700931b72de458
1 /*
2 Copyright © 2007-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 C99 function mbstowcs().
6 */
8 /*****************************************************************************
10 NAME
11 #include <stdlib.h>
13 size_t mbstowcs(
15 SYNOPSIS
16 wchar_t * restrict pwcs,
17 const char * restrict s,
18 size_t n)
20 FUNCTION
21 C99 function mbstowcs.
23 INPUTS
25 RESULT
27 NOTES
28 stdc.library currenlty only implements "C" locale.
30 EXAMPLE
32 BUGS
34 SEE ALSO
36 INTERNALS
37 Implemented as static inline function to adapt to changing wchar_t
38 definitions
40 ******************************************************************************/