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

📄 strm.c

📁 PB 熟悉的哥们希望大家可以互相学习一下
💻 C
字号:
/***************************************************************
 *                                                             *
 * Copyright(c) 2001-2005 McObject,LLC. All Right Reserved.    *
 *                                                             *
 ***************************************************************/

#include "strm.h"

int file_writer(void* stream_handle /* FILE *  */, const void* from, unsigned nbytes)
{
    FILE* f = (FILE*)stream_handle;
    int nbs = fwrite(from, 1, nbytes, f);
    return nbs;
}


int file_reader(void* stream_handle /* FILE *  */,  /* OUT */void* to, unsigned max_nbytes)
{
    FILE* f = (FILE*)stream_handle;
    int nbs =  - 1;
    if (to == 0)
    {
        return nbs;
    }
    nbs = fread(to, 1, max_nbytes, f);
    return nbs;
}

⌨️ 快捷键说明

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