Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/bind9/isc
File: error.h
/*
[0] Fix | Delete
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
[1] Fix | Delete
*
[2] Fix | Delete
* This Source Code Form is subject to the terms of the Mozilla Public
[3] Fix | Delete
* License, v. 2.0. If a copy of the MPL was not distributed with this
[4] Fix | Delete
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
[5] Fix | Delete
*
[6] Fix | Delete
* See the COPYRIGHT file distributed with this work for additional
[7] Fix | Delete
* information regarding copyright ownership.
[8] Fix | Delete
*/
[9] Fix | Delete
[10] Fix | Delete
[11] Fix | Delete
#ifndef ISC_ERROR_H
[12] Fix | Delete
#define ISC_ERROR_H 1
[13] Fix | Delete
[14] Fix | Delete
/*! \file isc/error.h */
[15] Fix | Delete
[16] Fix | Delete
#include <stdarg.h>
[17] Fix | Delete
[18] Fix | Delete
#include <isc/formatcheck.h>
[19] Fix | Delete
#include <isc/lang.h>
[20] Fix | Delete
#include <isc/likely.h>
[21] Fix | Delete
#include <isc/platform.h>
[22] Fix | Delete
[23] Fix | Delete
ISC_LANG_BEGINDECLS
[24] Fix | Delete
[25] Fix | Delete
typedef void (*isc_errorcallback_t)(const char *, int, const char *, va_list);
[26] Fix | Delete
[27] Fix | Delete
/*% set unexpected error */
[28] Fix | Delete
void
[29] Fix | Delete
isc_error_setunexpected(isc_errorcallback_t);
[30] Fix | Delete
[31] Fix | Delete
/*% set fatal error */
[32] Fix | Delete
void
[33] Fix | Delete
isc_error_setfatal(isc_errorcallback_t);
[34] Fix | Delete
[35] Fix | Delete
/*% unexpected error */
[36] Fix | Delete
void
[37] Fix | Delete
isc_error_unexpected(const char *, int, const char *, ...)
[38] Fix | Delete
ISC_FORMAT_PRINTF(3, 4);
[39] Fix | Delete
[40] Fix | Delete
/*% fatal error */
[41] Fix | Delete
ISC_PLATFORM_NORETURN_PRE void
[42] Fix | Delete
isc_error_fatal(const char *, int, const char *, ...)
[43] Fix | Delete
ISC_FORMAT_PRINTF(3, 4) ISC_PLATFORM_NORETURN_POST;
[44] Fix | Delete
[45] Fix | Delete
/*% runtimecheck error */
[46] Fix | Delete
ISC_PLATFORM_NORETURN_PRE void
[47] Fix | Delete
isc_error_runtimecheck(const char *, int, const char *) ISC_PLATFORM_NORETURN_POST;
[48] Fix | Delete
[49] Fix | Delete
#define ISC_ERROR_RUNTIMECHECK(cond) \
[50] Fix | Delete
((void) (ISC_LIKELY(cond) || \
[51] Fix | Delete
((isc_error_runtimecheck)(__FILE__, __LINE__, #cond), 0)))
[52] Fix | Delete
[53] Fix | Delete
ISC_LANG_ENDDECLS
[54] Fix | Delete
[55] Fix | Delete
#endif /* ISC_ERROR_H */
[56] Fix | Delete
[57] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function