]>
diplodocus.org Git - nmh/blob - sbr/error.h
1 /* error.h -- main error handling routines
3 * This code is Copyright (c) 2017, by the authors of nmh. See the
4 * COPYRIGHT file in the root directory of the nmh distribution for
5 * complete copyright information. */
7 void inform(char *fmt
, ...) CHECK_PRINTF(1, 2);
8 void advise(const char *, const char *, ...) CHECK_PRINTF(2, 3);
9 void adios(const char *, const char *, ...) CHECK_PRINTF(2, 3) NORETURN
;
10 void die(const char *, ...) CHECK_PRINTF(1, 2) NORETURN
;
11 void admonish(char *, char *, ...) CHECK_PRINTF(2, 3);
12 void advertise(const char *, char *, const char *, va_list) CHECK_PRINTF(3, 0);