URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [newlib/] [libc/] [stdlib/] [mbrlen.c] - Rev 295
Go to most recent revision | Compare with Previous | Blame | View Log
#include <reent.h> #include <newlib.h> #include <wchar.h> #include <stdlib.h> #include <stdio.h> #include <errno.h> size_t mbrlen(const char *s, size_t n, mbstate_t *ps) { #ifdef _MB_CAPABLE if (ps == NULL) { _REENT_CHECK_MISC(_REENT); ps = &(_REENT_MBRLEN_STATE(_REENT)); } #endif return mbrtowc(NULL, s, n, ps); }
Go to most recent revision | Compare with Previous | Blame | View Log