zlibtype.h

来自「psp上的reader 这个是以月光老大的cnreader为基础 增加了zi」· C头文件 代码 · 共 30 行

H
30
字号
#ifndef ___ZLIBTYPE
#define ___ZLIBTYPE

#define O_RDONLY    0x0001 
#define O_WRONLY    0x0002 
#define O_RDWR      0x0003 
#define O_NBLOCK    0x0010 
#define O_APPEND    0x0100 
#define O_CREAT     0x0200 
#define O_TRUNC     0x0400 
#define O_NOWAIT    0x8000 

struct _iobuf {
        char *_ptr;
        int   _cnt;
        char *_base;
        int   _flag;
        int   _file;
        int   _charbuf;
        int   _bufsiz;
        char *_tmpfname;
        };
typedef struct _iobuf FILE;
typedef unsigned int size_t;
#define NULL ((void *)0)

#endif //___ZLIBTYPE


⌨️ 快捷键说明

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