2001-03-17 04:17:14 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2001-10-24 10:30:29 +05:30
|
|
|
* Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
|
2001-03-17 04:17:14 +05:30
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2002-12-13 13:50:44 +05:30
|
|
|
#include <stdlib.h>
|
2001-03-17 04:17:14 +05:30
|
|
|
#include "libbb.h"
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
extern void bb_xprint_and_close_file(FILE *file)
|
2001-03-17 04:17:14 +05:30
|
|
|
{
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_xfflush_stdout();
|
|
|
|
/* Note: Do not use STDOUT_FILENO here, as this is a lib routine
|
|
|
|
* and the calling code may have reassigned stdout. */
|
|
|
|
if (bb_copyfd(fileno(file), fileno(stdout), 0) == -1) {
|
|
|
|
/* bb_copyfd outputs any needed messages, so just die. */
|
|
|
|
exit(bb_default_error_retval);
|
2002-12-13 13:50:44 +05:30
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
/* Note: Since we're reading, don't bother checking the return value
|
|
|
|
* of fclose(). The only possible failure is EINTR which
|
|
|
|
* should already have been taken care of. */
|
2001-05-15 23:18:09 +05:30
|
|
|
fclose(file);
|
2001-03-17 04:17:14 +05:30
|
|
|
}
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
/* Returns:
|
|
|
|
* 0 if successful
|
|
|
|
* -1 if 'filename' does not exist or is a directory
|
|
|
|
* exits with default error code if an error occurs
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern int bb_xprint_file_by_name(const char *filename)
|
2001-03-17 04:17:14 +05:30
|
|
|
{
|
2003-03-19 14:43:01 +05:30
|
|
|
FILE *f;
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
/* This check shouldn't be necessary for linux, but is left
|
|
|
|
* here disabled just in case. */
|
2001-04-10 04:18:12 +05:30
|
|
|
struct stat statBuf;
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
if(is_directory(filename, TRUE, &statBuf)) {
|
|
|
|
bb_error_msg("%s: Is directory", filename);
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
if ((f = bb_wfopen(filename, "r")) != NULL) {
|
|
|
|
bb_xprint_and_close_file(f);
|
|
|
|
return 0;
|
2001-04-10 04:18:12 +05:30
|
|
|
}
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
return -1;
|
2001-03-17 04:17:14 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* END CODE */
|
|
|
|
/*
|
|
|
|
Local Variables:
|
|
|
|
c-file-style: "linux"
|
|
|
|
c-basic-offset: 4
|
|
|
|
tab-width: 4
|
|
|
|
End:
|
|
|
|
*/
|