Ticket #2822: mbtest.c

File mbtest.c, 188 bytes (added by augiedoggie, 16 years ago)
Line 
1#include <locale.h>
2#include <limits.h>
3#include <stdio.h>
4
5int main(int argc, char** argv) {
6
7 setlocale(LC_CTYPE, "");
8
9 printf("Len: %i\n", mblen(argv[1], SSIZE_MAX));
10
11 return 0;
12}