📄 bexit.cpp
字号:
/* Copyright (c) 1989 Citadel */
/* All Rights Reserved */
/* #ident "@(#)bexit.c 1.4 - 90/06/20" */
/* ansi headers */
#include <errno.h>
/*#include <stdlib.h>*/
/* local headers */
#include "blkio_.h"
/*man---------------------------------------------------------------------------
NAME
bexit - block file exit
SYNOPSIS
#include <blkio.h>
void bexit(status)
int status;
DESCRIPTION
The bexit function is for use with the blkio library in place of
exit. It closes all open block files, which writes the contents
of the buffers to the files, then calls exit.
SEE ALSO
bclose.
------------------------------------------------------------------------------*/
void bexit(int status)
{
BLKFILE *bp = NULL;
/* close all open block files */
for (bp = biob; bp < (biob + BOPEN_MAX); ++bp) {
if (bp->flags & BIOOPEN) {
if (bclose(bp) == -1) {
BEPRINT;
}
}
}
exit(status);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -