config.h

来自「C程序漏洞检查!」· C头文件 代码 · 共 32 行

H
32
字号
/***** uno: config.h *****//* Copyright (c) 2000-2003 by Lucent Technologies - Bell Laboratories     *//* All Rights Reserved.  This software is for educational purposes only.  *//* Permission is given to distribute this code provided that this intro-  *//* ductory message is not removed and no monies are exchanged.            *//* No guarantee is expressed or implied by the distribution of this code. *//* Software written by Gerard J. Holzmann based on the public domain      *//* ANSI-C parser Ctree Version 0.14 from Shaun Flisakowski                */#ifndef CONFIG_H#define CONFIG_H#ifdef __cplusplus#    define CPLUS#    define BEGIN_HEADER extern "C"{#    define END_HEADER   }#    define EXTERN  extern "C"#else#    define BEGIN_HEADER /* nothing */#    define END_HEADER   /* nothing */#    define EXTERN  extern#endif#if defined(__STDC__) || defined(__cplusplus)#    define ARGS(args) args#else#    define ARGS(args) ()#endif#endif /* CONFIG_H */

⌨️ 快捷键说明

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