compiler/clib: Rename IoErr2errno() to __arosc_ioerr2errno(); function is now defined...
[AROS.git] / compiler / clib / wcstombs.c
bloba3bab174457f9f95873187c5ab2d116c7ffcfa8d
1 /*
2 Copyright © 2007, The AROS Development Team. All rights reserved.
3 $Id$
5 ISO/ANSI C function wcstombs().
6 */
8 #include <aros/debug.h>
10 /*****************************************************************************
12 NAME */
14 #include <stdlib.h>
16 size_t wcstombs(
18 /* SYNOPSIS */
19 char *s,
20 const wchar_t *pwcs,
21 size_t n)
23 /* FUNCTION
25 INPUTS
27 RESULT
29 NOTES
31 EXAMPLE
33 BUGS
35 SEE ALSO
37 INTERNALS
39 ******************************************************************************/
41 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
43 return (size_t) -1;