ReactOS 0.4.16-dev-959-g2ec3a19
mbrtoc32.cpp File Reference
#include <corecrt_internal_mbstring.h>
#include <corecrt_internal_ptd_propagation.h>
#include <errno.h>
#include <stdint.h>
#include <uchar.h>
Include dependency graph for mbrtoc32.cpp:

Go to the source code of this file.

Functions

size_t __cdecl mbrtoc32 (char32_t *pc32, const char *s, size_t n, mbstate_t *ps)
 

Function Documentation

◆ mbrtoc32()

size_t __cdecl mbrtoc32 ( char32_t pc32,
const char s,
size_t  n,
mbstate_t ps 
)

Definition at line 15 of file mbrtoc32.cpp.

16{
17 // TODO: Bug 13307590 says this is always assuming UTF-8.
18 __crt_cached_ptd_host ptd;
19 return __mbrtoc32_utf8(pc32, s, n, ps, ptd);
20}
_In_ size_t const _In_ int _In_ bool const _In_ unsigned const _In_ __acrt_rounding_mode const _Inout_ __crt_cached_ptd_host & ptd
Definition: cvt.cpp:355
GLdouble s
Definition: gl.h:2039
GLdouble n
Definition: glext.h:7729
size_t __cdecl __mbrtoc32_utf8(char32_t *pc32, const char *s, size_t n, mbstate_t *ps, __crt_cached_ptd_host &ptd)
Definition: mbrtoc32.cpp:22