source: trunk/sys/dietlibc/mblen.c @ 1

Last change on this file since 1 was 1, checked in by alain, 7 years ago

First import

File size: 105 bytes
RevLine 
[1]1#include <stdlib.h>
2#include <wchar.h>
3
4int mblen(const char* s,size_t n) {
5  return mbrlen(s,n,NULL);
6}
Note: See TracBrowser for help on using the repository browser.