PageRenderTime 39ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/reference/bash-1.14.7/error.h

http://github.com/cardmagic/lucash
C Header | 34 lines | 5 code | 6 blank | 23 comment | 0 complexity | 11af11ee1c12813c1453a60f45151921 MD5 | raw file
Possible License(s): LGPL-2.1, AGPL-1.0, GPL-2.0, LGPL-2.0
  1. /* error.h -- External declarations of functions appearing in error.c. */
  2. /* Copyright (C) 1993 Free Software Foundation, Inc.
  3. This file is part of GNU Bash, the Bourne Again SHell.
  4. Bash is free software; you can redistribute it and/or modify it under
  5. the terms of the GNU General Public License as published by the Free
  6. Software Foundation; either version 2, or (at your option) any later
  7. version.
  8. Bash is distributed in the hope that it will be useful, but WITHOUT ANY
  9. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  11. for more details.
  12. You should have received a copy of the GNU General Public License along
  13. with Bash; see the file COPYING. If not, write to the Free Software
  14. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
  15. /* Get the name of the shell or shell script for an error message. */
  16. extern char *get_name_for_error ();
  17. /* Report an error having to do with FILENAME. */
  18. extern void file_error ();
  19. /* Report a programmer's error, and abort. Pass REASON, and ARG1 ... ARG5. */
  20. extern void programming_error ();
  21. /* General error reporting. Pass FORMAT and ARG1 ... ARG5. */
  22. extern void report_error ();
  23. /* Report an unrecoverable error and exit. Pass FORMAT and ARG1 ... ARG5. */
  24. extern void fatal_error ();