mblen.c - scc - simple c99 compiler
HTML git clone git://git.simple-cc.org/scc
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
mblen.c (102B)
---
1 #include <stdlib.h>
2
3 #undef mblen
4
5 int
6 mblen(const char *s, size_t n)
7 {
8 return mbtowc(NULL, s, n);
9 }