Init the object variable for the registergroup so that
[cake.git] / compiler / clib / mblen.c
blobc765b4376012d86aa12d442cc2d12b68a3f4e49c
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 /*****************************************************************************
12 NAME */
14 #include <string.h>
15 #include <stdlib.h>
17 size_t mblen(
19 /* SYNOPSIS */
20 const char *s,
21 size_t n)
23 /* FUNCTION
25 INPUTS
27 RESULT
29 NOTES
30 Not implemented.
32 EXAMPLE
34 BUGS
36 SEE ALSO
38 INTERNALS
40 ******************************************************************************/
42 # warning Implement mblen() properly
43 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
45 return strlen(s);