repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mlib update: new isnan()/isnanf() implementation
[tangerine.git]
/
compiler
/
clib
/
mbtowc.c
blob
1e9a80d20175648e82a2700067558f637f2c6793
1
/*
2
Copyright © 2007, The AROS Development Team. All rights reserved.
3
$Id$
4
5
ISO/ANSI C function mbtowc().
6
*/
7
8
#include <aros/debug.h>
9
10
#include <stdlib.h>
11
12
int
mbtowc
(
wchar_t
*
pwc
,
const char
*
s
,
size_t
n
) {
13
AROS_FUNCTION_NOT_IMPLEMENTED
(
"arosc"
);
14
15
return
-
1
;
16
}