repo.or.cz
/
cake.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added setting position while duplicating file handles with FMF_WRITE mode. It's neede...
[cake.git]
/
compiler
/
clib
/
mbstowcs.c
blob
fe61dd651a14631be84cd4d2f4e8f3f6ac7fcfdc
1
/*
2
Copyright © 2007, The AROS Development Team. All rights reserved.
3
$Id$
4
5
ISO/ANSI C function mbstowcs().
6
*/
7
8
#include <aros/debug.h>
9
10
#include <stdlib.h>
11
12
size_t
mbstowcs
(
wchar_t
*
pwcs
,
const char
*
s
,
size_t
n
) {
13
AROS_FUNCTION_NOT_IMPLEMENTED
(
"arosc"
);
14
15
return
(
size_t
) -
1
;
16
}