📄 pclose.c
字号:
/* Copyright (c) 1979 Regents of the University of California */static char sccsid[] = "@(#)PCLOSE.c 1.6 1/21/83";/* * Close all files associated with the topmost stack frame. */#include "h00vars.h"#include "libpc.h"PCLOSE(level) struct iorec *level;{ register struct iorec *next; next = _fchain.fchain; while(next != FILNIL && next->flev <= level) { next = PFCLOSE(next, TRUE); } _fchain.fchain = next;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -