old_util.h
来自「数据结构与程序设计教材源码 数据结构与程序设计教材源码」· C头文件 代码 · 共 20 行
H
20 行
#include <iostream.h> // standard iostream operations
#include <limits.h> // numeric limits
#include <math.h> // mathematical functions
#include <stdlib.h> // c-string functions
#include <string.h> // c-string functions
#include <stddef.h> // c library language support
#include <fstream.h> // file input and output
#include <ctype.h> // character classification
#include <time.h> // date and time functions
typedef int bool;
const bool false = 0;
const bool true = 1;
bool user_says_yes();
enum Error_code { success, fail, range_error, underflow, overflow, fatal,
not_present, duplicate_error, entry_inserted, entry_found,
internal_error };
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?