_strinc, mbsinc, _wcsinc

De RAD Studio (Français)

Header File

mbstring.h, tchar.h

Category

Memory and String Manipulation Routines

Prototype

unsigned char *_mbsinc(const unsigned char *p);

// From tchar.h

#define _tcsinc _strinc

#define _tcsinc _wcsinc

inline char * strinc(const char * s) { return (char *)(s+1); }

Description

_mbsinc increments a string pointer by one byte.

_strdec is the single-byte version of this function.

_wcsdec is the wide-character version of this function.

Return Value

Returns a pointer that is forwarded by 1 byte.

Autres langues