aboutsummaryrefslogtreecommitdiffstats
path: root/src/util/fshut.h
blob: 4c91179eac872573a691465b3f2a33b187e7b94c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* See LICENSE file for copyright and license details. */
#include <stdio.h>

#define efshut(...) enfshut(1, __VA_ARGS__)

static inline int
fshut(FILE *fp, const char *fname)
{
	int ret = 0;

        /* fflush() is undefined for input streams by ISO C,
         * but not POSIX 2008 if you ignore ISO C overrides.
         * Leave it unchecked and rely on the following
         * functions to detect errors.
         */
        fflush(fp);

        if (ferror(fp) && !ret) {
        	weprintf("ferror %s:", fname);
                ret = 1;
        }

        if (fclose(fp) && !ret) {
                weprintf("fclose %s:", fname);
		ret = 1;
	}

        return ret;
}

static inline void
enfshut(int status, FILE *fp, const char *fname)
{
 	if (fshut(fp, fname))
                exit(status);
}