lyexit.h
来自「elinks下lynx是最重要的二个文本浏览器, 在linux下非常实用, ly」· C头文件 代码 · 共 59 行
H
59 行
#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 */#ifndef HTUTILS_H#include <HTUtils.h>#endif/* * Constant defines */#ifdef exit#undef exit#endif /* _WINDOWS */#define exit(code) LYexit(code)#define atexit LYatexit#define ATEXITSIZE 50/* * Data structures *//* * Global variable declarations *//* * Macros *//* * Function declarations */extern void exit_immediately PARAMS((int status)) GCC_NORETURN;extern void LYexit PARAMS((int status)) GCC_NORETURN;extern int LYatexit PARAMS((void (*function)(void)));#endif /* __LYEXIT_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?