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

📄 ansi.h

📁 坦尼保姆
💻 H
字号:
/* (c) copyright 1992 by the Vrije Universiteit, Amsterdam, The Netherlands.*/#ifndef __ANSI_H__INCLUDED#define __ANSI_H__INCLUDED/* T O   A N S I   O R   N O T   T O   A N S I ? *//* $Id: ansi.h,v 1.3 1994/06/24 11:25:34 ceriel Exp $ *//* Define the * _PROTOTYPE macro to either expand both of its arguments   (ANSI prototypes), or only the function name (K&R prototypes). */#if __STDC__#include <stddef.h>#define	_PROTOTYPE(function, params)	function params#define _SIZET		size_t#define _CONST		const#else#define	_PROTOTYPE(function, params)	function()#define _SIZET		unsigned int#define _CONST#endif /* __STDC__ */#endif /* __ANSI_H__INCLUDED */

⌨️ 快捷键说明

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