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

📄 param.h

📁 glibc 2.9,最新版的C语言库函数
💻 H
字号:
/* This file should contain various parameter macros appropriate for the   machine and operating system.  There is no standard set of macros; this   file is just for compatibility with programs written for Unix that   expect it to define things.  On Unix systems that do not have their own   sysdep version of this file, it is generated at build time by examining   the installed headers on the system.  */#include <limits.h>#define MAXSYMLINKS  1#define MAXPATHLEN   256/* Macros for min/max.  */#define MIN(a,b) (((a)<(b))?(a):(b))#define MAX(a,b) (((a)>(b))?(a):(b))

⌨️ 快捷键说明

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