⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mbstok.c

📁 C标准库源代码
💻 C
字号:
/***
*mbstok.c - Break string into tokens (MBCS)
*
*       Copyright (c) 1985-1997, Microsoft Corporation.  All rights reserved.
*
*Purpose:
*       Break string into tokens (MBCS)
*
*******************************************************************************/

#ifdef _MBCS

#include <mtdll.h>
#include <cruntime.h>
#include <string.h>
#include <mbdata.h>
#include <mbctype.h>
#include <mbstring.h>
#include <stddef.h>

#define _MBSSPNP(p,s)  _mbsspnp(p,s)
#define _MBSPBRK(q,s) _mbspbrk(q,s);

/***
* _mbstok - Break string into tokens (MBCS)
*
*Purpose:
*       strtok considers the string to consist of a sequence of zero or more
*       text tokens separated by spans of one or more control chars. the first
*       call, with string specified, returns a pointer to the first char of the
*       first token, and will write a null char into string immediately
*       following the returned token. subsequent calls with zero for the first
*       argument (string) will work thru the string until no tokens remain. the
*       control string may be different from call to call. when no tokens remain
*       in string a NULL pointer is returned. remember the control chars with a
*       bit map, one bit per ascii char. the null char is always a control char.
*
*       MBCS chars supported correctly.
*
*Entry:
*       char *string = string to break into tokens.
*       char *sepset = set of characters to use as seperators
*
*Exit:
*       returns pointer to token, or NULL if no more tokens
*
*Exceptions:
*
*******************************************************************************/

unsigned char * __cdecl _mbstok(
        unsigned char * string,
        const unsigned char * sepset
        )
{
        unsigned char *nextsep;

#ifdef _MT

        _ptiddata ptd = _getptd();
        unsigned char *nextoken;

#else  /* _MT */

        static unsigned char *nextoken;

#endif  /* _MT */

        if ( _ISNOTMBCP )
            return strtok(string, sepset);

        /* init start of scan */

        if (string)
            nextoken = string;
        else
        /* If string==NULL, continue with previous string */
        {

#ifdef _MT

            nextoken = ptd->_mtoken;

#endif  /* _MT */

            if (!nextoken)
                return NULL;
        }

        /* skip over lead seperators */

        if ((string = _MBSSPNP(nextoken, sepset)) == NULL)
            return(NULL);


        _mlock(_MB_CP_LOCK);

        /* test for end of string */

        if ( (*string == '\0') ||
             ( (_ISLEADBYTE(*string)) && (string[1] == '\0') )
           )
        {
            _munlock(_MB_CP_LOCK);
            return(NULL);
        }


        /* find next seperator */

        nextsep = _MBSPBRK(string, sepset);

        if ((nextsep == NULL) || (*nextsep == '\0'))
            nextoken = NULL;
        else {
            if (_ISLEADBYTE(*nextsep))
                *nextsep++ = '\0';
            *nextsep = '\0';
            nextoken = ++nextsep;
        }

#ifdef _MT
        /* Update the corresponding field in the per-thread data * structure */


        ptd->_mtoken = nextoken;


#endif  /* _MT */

        _munlock(_MB_CP_LOCK);
        return(string);
}

#endif  /* _MBCS */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -