Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/bind9/isc
File: crc64.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
#ifndef ISC_CRC64_H
[11] Fix | Delete
#define ISC_CRC64_H 1
[12] Fix | Delete
[13] Fix | Delete
/*! \file isc/crc64.h
[14] Fix | Delete
* \brief CRC64 in C
[15] Fix | Delete
*/
[16] Fix | Delete
[17] Fix | Delete
#include <inttypes.h>
[18] Fix | Delete
[19] Fix | Delete
#include <isc/lang.h>
[20] Fix | Delete
#include <isc/types.h>
[21] Fix | Delete
[22] Fix | Delete
ISC_LANG_BEGINDECLS
[23] Fix | Delete
[24] Fix | Delete
void
[25] Fix | Delete
isc_crc64_init(uint64_t *crc);
[26] Fix | Delete
/*%
[27] Fix | Delete
* Initialize a new CRC.
[28] Fix | Delete
*
[29] Fix | Delete
* Requires:
[30] Fix | Delete
* * 'crc' is not NULL.
[31] Fix | Delete
*/
[32] Fix | Delete
[33] Fix | Delete
void
[34] Fix | Delete
isc_crc64_update(uint64_t *crc, const void *data, size_t len);
[35] Fix | Delete
/*%
[36] Fix | Delete
* Add data to the CRC.
[37] Fix | Delete
*
[38] Fix | Delete
* Requires:
[39] Fix | Delete
* * 'crc' is not NULL.
[40] Fix | Delete
* * 'data' is not NULL.
[41] Fix | Delete
*/
[42] Fix | Delete
[43] Fix | Delete
void
[44] Fix | Delete
isc_crc64_final(uint64_t *crc);
[45] Fix | Delete
/*%
[46] Fix | Delete
* Finalize the CRC.
[47] Fix | Delete
*
[48] Fix | Delete
* Requires:
[49] Fix | Delete
* * 'crc' is not NULL.
[50] Fix | Delete
*/
[51] Fix | Delete
[52] Fix | Delete
ISC_LANG_ENDDECLS
[53] Fix | Delete
[54] Fix | Delete
#endif /* ISC_CRC64_H */
[55] Fix | Delete
[56] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function