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

📄 lyexit.h

📁 基于rtos开发的浏览器!
💻 H
字号:
#ifndef __LYEXIT_H/* *	Avoid include redundancy */#define __LYEXIT_H/* *	Copyright (c) 1994, University of Kansas, All Rights Reserved * *	Include File:	LYexit.h *	Purpose:	Provide an atexit function for libraries without such. *	Remarks/Portability/Dependencies/Restrictions: *		Include this header in every file that you have an exit or *			atexit statment. *	Revision History: *		06-15-94	created Lynx 2-3-1 Garrett Arch Blythe *//* *	Required includes */#include <stdlib.h>#include "HTUtils.h"/* *	Constant defines */#ifdef _WINDOWS#undef exit#endif /* _WINDOWS */#define exit LYexit#define atexit LYatexit#define ATEXITSIZE 32/* *	Data structures *//* *	Global variable declarations *//* *	Macros *//* *	Function declarations */extern void LYexit PARAMS((int status));#ifdef __STDC__extern int LYatexit(void (*function)(void));#elseextern int LYatexit();#endif /* __STDC__ */#endif /* __LYEXIT_H */

⌨️ 快捷键说明

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