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

📄 getc.c

📁 winNT技术操作系统,国外开放的原代码和LIUX一样
💻 C
字号:
/* $Id: getc.c 21262 2006-03-08 23:27:16Z audit $
 *
 *  ReactOS msvcrt library
 *
 *  getc.c
 *
 *  Copyright (C) 2002  Robert Dickenson <robd@reactos.org>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include <precomp.h>

//getc can be a macro
#undef getc
#undef getwc

#ifndef MB_CUR_MAX
#define MB_CUR_MAX 10
#endif

int getc(FILE *fp)
{
    int c = -1;

    // check for invalid stream
	if ( !__validfp (fp) ) {
		__set_errno(EINVAL);
		return EOF;
	}
    // check for read access on stream
	if ( !OPEN4READING(fp) ) {
		__set_errno(EINVAL);
		return EOF;
	}
	if(fp->_cnt > 0) {
		fp->_cnt--;
		c =  (int)(*fp->_ptr++ & 0377);
	} else {
		c =  _filbuf(fp);
	}
	return c;
}

/*
 * @implemented
 */
wint_t getwc(FILE *fp)
{
    wint_t c = -1;

    // check for invalid stream
    if (!__validfp(fp)) {
        __set_errno(EINVAL);
        return WEOF;
    }
    // check for read access on stream
//#define OPEN4READING(f) ((((f)->_flag & _IOREAD) == _IOREAD ) )
    if (!OPEN4READING(fp)) {
        __set_errno(EINVAL);
        return WEOF;
    }
    // might check on multi bytes if text mode
    if (fp->_flag & _IOBINARY) {
        if (fp->_cnt > 1) {
            fp->_cnt -= sizeof(wchar_t);
            c = *((wchar_t*)fp->_ptr);
            fp->_ptr += sizeof(wchar_t);
        } else {
            c = _filwbuf(fp);
            // need to fix by one values of  fp->_ptr and fp->_cnt
            fp->_ptr++;
            fp->_cnt--;
        }
    } else {
#if 0
        BOOL get_bytes = 0;
        int mb_cnt = 0;
        int found_cr = 0;
        //int count;
        char mbchar[MB_CUR_MAX];

        do {
            if (fp->_cnt > 0) {
                fp->_cnt--;
                mbchar[mb_cnt] = *fp->_ptr++ & 0377;
            } else {
                mbchar[mb_cnt] = _filbuf(fp);
            }
            if (isleadbyte(mbchar[mb_cnt])) {
                get_bytes = 1;
            } else {
                get_bytes = 0;
            }
            if (_ismbblead(mbchar[mb_cnt])) {
            }
            ++mb_cnt;
        //}
        } while (get_bytes);

        // Convert a multibyte character to a corresponding wide character.
        mb_cnt = mbtowc(&c, mbchar, mb_cnt);
        if (mb_cnt == -1) {
            fp->_flag |= _IOERR;
            return WEOF;
        }
#else
        if (fp->_cnt > 0) {
            fp->_cnt--;
            c = *fp->_ptr++ &0377;
        } else {
            c = _filbuf(fp);
        }
#endif
    }
    return c;
}

⌨️ 快捷键说明

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