ansi.h

来自「坦尼保姆」· C头文件 代码 · 共 30 行

H
30
字号
/* (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 + =
减小字号Ctrl + -
显示快捷键?