Use dos.library/CreateNewProc() instead of alib/CreateNewProcTags()
[tangerine.git] / compiler / clib / mblen.c
blob2e2bec03e92d92f615a5e40efb1c905af7d9ac81
1 /*
2 Copyright © 2004, The AROS Development Team. All rights reserved.
3 $Id$
5 ISO/ANSI C function mblen().
6 */
8 #include <aros/debug.h>
10 #include <string.h>
11 #include <stdlib.h>
13 size_t mblen(const char *s, size_t n)
15 # warning Implement mblen() properly
16 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
18 return strlen(s);