blob: 1b14413474ecab9a9aa6e8c389335fc5c77b58aa [file] [log] [blame]
Manuel Novoa III cad53642003-03-19 09:13:01 +00001/* vi: set sw=4 ts=4: */
2/*
3 * fclose_nonstdin implementation for busybox
4 *
5 * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
6 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Manuel Novoa III cad53642003-03-19 09:13:01 +00008 */
9
Eric Andersenaff114c2004-04-14 17:51:38 +000010/* A number of standard utilities can accept multiple command line args
Manuel Novoa III cad53642003-03-19 09:13:01 +000011 * of '-' for stdin, according to SUSv3. So we encapsulate the check
12 * here to save a little space.
13 */
14
Denis Vlasenkod398eca2006-11-24 15:38:03 +000015#include "libbb.h"
Manuel Novoa III cad53642003-03-19 09:13:01 +000016
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000017int FAST_FUNC fclose_if_not_stdin(FILE *f)
Manuel Novoa III cad53642003-03-19 09:13:01 +000018{
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000019 /* Some more paranoid applets want ferror() check too */
20 int r = ferror(f); /* NB: does NOT set errno! */
maxwen27116ba2015-08-14 21:41:28 +020021 if (r)
22 errno = EIO; /* so we'll help it */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000023 if (f != stdin)
24 return (r | fclose(f)); /* fclose does set errno on error */
25 return r;
Manuel Novoa III cad53642003-03-19 09:13:01 +000026}