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

📄 types.h

📁 acm比赛参考用书 里面附有源代码 还有Report 为北大ACM试题
💻 H
字号:
/* * unlike in <zzip/conf.h> we are allowed to make up typedefs here, * while over there only #defines are allowed * * Author:  *	Guido Draheim <guidod@gmx.de> * *	Copyright (c) 2003,2004 Guido Draheim * 	    All rights reserved,  *          usage allowed under the restrictions of the *	    Lesser GNU General Public License  *          or alternatively the restrictions  *          of the Mozilla Public License 1.1 * * if you see "unknown symbol" errors, check first that `-I ..` is part of * your compiler options - a special hint to VC/IDE users who tend to make up * their own workspace files. All includes look like #include <zzip|*.h>, so * you need to add an include path to the dir containing (!!) the ./zzip/ dir */#ifndef _ZZIP_TYPES_H_#define _ZZIP_TYPES_H_#include <zzip/conf.h>#include <fcntl.h>#include <stddef.h> /* size_t and friends *//* msvc6 has neither ssize_t (we assume "int") nor off_t (assume "long") */typedef       _zzip_off_t       zzip_off_t;typedef       _zzip_size_t      zzip_size_t;typedef       _zzip_ssize_t     zzip_ssize_t;#endif

⌨️ 快捷键说明

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