ReactOS 0.4.16-dev-937-g7afcd2a
mbsinc.cpp File Reference
#include <corecrt_internal.h>
#include <corecrt_internal_mbstring.h>
#include <stddef.h>
Include dependency graph for mbsinc.cpp:

Go to the source code of this file.

Functions

unsigned char *__cdecl _mbsinc_l (const unsigned char *current, _locale_t plocinfo)
 
unsigned char *__cdecl _mbsinc (const unsigned char *current)
 

Function Documentation

◆ _mbsinc()

unsigned char *__cdecl _mbsinc ( const unsigned char current)

Definition at line 57 of file mbsinc.cpp.

60{
61 /* validation section */
62 _VALIDATE_RETURN(current != nullptr, EINVAL, nullptr);
63
64 if ( _ismbblead(*(current++)))
65 {
66 /* don't move forward two if we get leadbyte, EOS
67 also don't assert here as we are too low level
68 */
69 if(*current!='\0')
70 {
71 current++;
72 }
73 }
74
75 return (unsigned char *)current;
76}
#define EINVAL
Definition: acclib.h:90
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
struct task_struct * current
Definition: linux.c:32
int __cdecl _ismbblead(unsigned int)
Definition: ismblead.c:20

◆ _mbsinc_l()

unsigned char *__cdecl _mbsinc_l ( const unsigned char current,
_locale_t  plocinfo 
)

Definition at line 38 of file mbsinc.cpp.

42{
43 if ( (_ismbblead_l)(*(current++),plocinfo))
44 {
45 /* don't move forward two if we get leadbyte, EOS
46 also don't assert here as we are too low level
47 */
48 if(*current!='\0')
49 {
50 current++;
51 }
52 }
53
54 return (unsigned char *)current;
55}
#define _ismbblead_l(_c, p)
_locale_t plocinfo
Definition: ismbbyte.cpp:75