📄 quit.c
字号:
#include <memory.h>#include <unistd.h>#include <errno.h>#include <stdlib.h>#include <fcntl.h>#include <iostream>#include <stdio.h>#include "page.h"#include "buf.h"#include "catalog.h"#include "utility.h"extern BufMgr *bufMgr;extern RelCatalog *relCat;extern AttrCatalog *attrCat;//// Closes the catalog files in preparation for shutdown.//// No return value.//void UT_Quit(void){ // close relcat and attrcat// delete relCat; delete attrCat; delete relCat ; // delete bufMgr to flush out all dirty pages delete bufMgr; exit(1);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -