blob: 6f3f3733203a42b3f748f3265d9b0150a4527786 [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 *
"Robert P. J. Day"5d8843e2006-07-10 11:41:19 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
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! */
21 if (r) errno = EIO; /* so we'll help it */
22 if (f != stdin)
23 return (r | fclose(f)); /* fclose does set errno on error */
24 return r;
Manuel Novoa III cad53642003-03-19 09:13:01 +000025}