print_file.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Utility routines.
  4. *
  5. * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #include <stdio.h>
  22. #include <stdlib.h>
  23. #include <unistd.h>
  24. #include "libbb.h"
  25. extern void bb_xprint_and_close_file(FILE *file)
  26. {
  27. bb_xfflush_stdout();
  28. /* Note: Do not use STDOUT_FILENO here, as this is a lib routine
  29. * and the calling code may have reassigned stdout. */
  30. if (bb_copyfd_eof(fileno(file), STDOUT_FILENO) == -1) {
  31. /* bb_copyfd outputs any needed messages, so just die. */
  32. exit(bb_default_error_retval);
  33. }
  34. /* Note: Since we're reading, don't bother checking the return value
  35. * of fclose(). The only possible failure is EINTR which
  36. * should already have been taken care of. */
  37. fclose(file);
  38. }
  39. /* Returns:
  40. * 0 if successful
  41. * -1 if 'filename' does not exist or is a directory
  42. * exits with default error code if an error occurs
  43. */
  44. extern int bb_xprint_file_by_name(const char *filename)
  45. {
  46. FILE *f;
  47. #if 0
  48. /* This check shouldn't be necessary for linux, but is left
  49. * here disabled just in case. */
  50. struct stat statBuf;
  51. if(is_directory(filename, TRUE, &statBuf)) {
  52. bb_error_msg("%s: Is directory", filename);
  53. } else
  54. #endif
  55. if ((f = bb_wfopen(filename, "r")) != NULL) {
  56. bb_xprint_and_close_file(f);
  57. return 0;
  58. }
  59. return -1;
  60. }
  61. /* END CODE */
  62. /*
  63. Local Variables:
  64. c-file-style: "linux"
  65. c-basic-offset: 4
  66. tab-width: 4
  67. End:
  68. */