环境是否是 GNU C++ 14 而不是 ISO C++ 14
也就是说允许使用 std::__lg() 函数?
是否可以使用 stdint.h 的
typedef signed char int8_t;
typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned uint32_t;
__MINGW_EXTENSION typedef long long int64_t;
__MINGW_EXTENSION typedef unsigned long long uint64_t;
而不是使用 long long?
可否允许使用 fread() fwrite() 以优化输入输出?