home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / err.h < prev    next >
C/C++ Source or Header  |  2004-01-30  |  743b  |  34 lines

  1. /* err.h
  2.  
  3.    Copyright 2003 Red Hat, Inc.
  4.  
  5. This file is part of Cygwin.
  6.  
  7. This software is a copyrighted work licensed under the terms of the
  8. Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
  9. details. */
  10.  
  11. #ifndef _ERR_H
  12. #define _ERR_H
  13.  
  14. #include <sys/cdefs.h>
  15. #include <stdarg.h>
  16.  
  17. __BEGIN_DECLS
  18.  
  19. extern void warn (const char *fmt, ...);
  20. extern void warnx (const char *fmt, ...);
  21.  
  22. extern void err (int eval, const char *fmt, ...);
  23. extern void errx (int eval, const char *fmt, ...);
  24.  
  25. extern void vwarn (const char *fmt, va_list ap);
  26. extern void vwarnx (const char *fmt, va_list ap);
  27.  
  28. extern void verr (int eval, const char *fmt, va_list ap);
  29. extern void verrx (int eval, const char *fmt, va_list ap);
  30.  
  31. __END_DECLS
  32.  
  33. #endif /* _ERR_H */
  34.