📄 vcl_cstdlib.h
字号:
#ifndef vcl_mwerks_cstdlib_h_
#define vcl_mwerks_cstdlib_h_
#include <cstdlib>
#define vcl_generic_cstdlib_STD /* */
#include "generic/vcl_cstdlib.h"
// the following functions are declared in both <cmath> and <cstdlib>
#undef vcl_abs
#define vcl_abs vcl_abs
inline int vcl_abs(int x) { return ::abs(x); }
inline long vcl_abs(long x) { return (x >= 0) ? x : -x; } // no "long ::abs(long)"
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -