utility.h
来自「linux 下用c++ 开发的一个小型数据库系统」· C头文件 代码 · 共 33 行
H
33 行
#ifndef UTILITY_H#define UTILITY_H#include <memory.h>#include <unistd.h>#include <errno.h>#include <stdlib.h>#include <fcntl.h>#include <iostream>#include <math.h>#include <stdio.h>#include <sys/types.h>#include <functional>#include "error.h"#include <string.h>using namespace std;#include "error.h"// define if debug output wanted//// Prototypes for utility layer functions//const Status UT_Load(const string & relation, const string & fileName);const Status UT_Print(string relation);void UT_Quit(void);#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?