blob: 7d5331063998e0b830291c3824256798c0d49b51 [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 */
Denys Vlasenkoebe6d9d2017-10-05 14:40:24 +02009#include "libbb.h"
Manuel Novoa III cad53642003-03-19 09:13:01 +000010
Eric Andersenaff114c2004-04-14 17:51:38 +000011/* A number of standard utilities can accept multiple command line args
Manuel Novoa III cad53642003-03-19 09:13:01 +000012 * of '-' for stdin, according to SUSv3. So we encapsulate the check
13 * here to save a little space.
14 */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000015int FAST_FUNC fclose_if_not_stdin(FILE *f)
Manuel Novoa III cad53642003-03-19 09:13:01 +000016{
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000017 /* Some more paranoid applets want ferror() check too */
18 int r = ferror(f); /* NB: does NOT set errno! */
Denys Vlasenko259b3c02013-11-28 03:14:16 +010019 if (r)
20 errno = EIO; /* so we'll help it */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000021 if (f != stdin)
22 return (r | fclose(f)); /* fclose does set errno on error */
23 return r;
Manuel Novoa III cad53642003-03-19 09:13:01 +000024}