Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/bind9/isc
File: stdio.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_STDIO_H
[12] Fix | Delete
#define ISC_STDIO_H 1
[13] Fix | Delete
[14] Fix | Delete
/*! \file isc/stdio.h */
[15] Fix | Delete
[16] Fix | Delete
/*%
[17] Fix | Delete
* These functions are wrappers around the corresponding stdio functions.
[18] Fix | Delete
*
[19] Fix | Delete
* They return a detailed error code in the form of an an isc_result_t. ANSI C
[20] Fix | Delete
* does not guarantee that stdio functions set errno, hence these functions
[21] Fix | Delete
* must use platform dependent methods (e.g., the POSIX errno) to construct the
[22] Fix | Delete
* error code.
[23] Fix | Delete
*/
[24] Fix | Delete
[25] Fix | Delete
#include <stdio.h>
[26] Fix | Delete
[27] Fix | Delete
#include <isc/lang.h>
[28] Fix | Delete
#include <isc/result.h>
[29] Fix | Delete
[30] Fix | Delete
ISC_LANG_BEGINDECLS
[31] Fix | Delete
[32] Fix | Delete
/*% Open */
[33] Fix | Delete
isc_result_t
[34] Fix | Delete
isc_stdio_open(const char *filename, const char *mode, FILE **fp);
[35] Fix | Delete
[36] Fix | Delete
/*% Close */
[37] Fix | Delete
isc_result_t
[38] Fix | Delete
isc_stdio_close(FILE *f);
[39] Fix | Delete
[40] Fix | Delete
/*% Seek */
[41] Fix | Delete
isc_result_t
[42] Fix | Delete
isc_stdio_seek(FILE *f, off_t offset, int whence);
[43] Fix | Delete
[44] Fix | Delete
/*% Tell */
[45] Fix | Delete
isc_result_t
[46] Fix | Delete
isc_stdio_tell(FILE *f, off_t *offsetp);
[47] Fix | Delete
[48] Fix | Delete
/*% Read */
[49] Fix | Delete
isc_result_t
[50] Fix | Delete
isc_stdio_read(void *ptr, size_t size, size_t nmemb, FILE *f,
[51] Fix | Delete
size_t *nret);
[52] Fix | Delete
[53] Fix | Delete
/*% Write */
[54] Fix | Delete
isc_result_t
[55] Fix | Delete
isc_stdio_write(const void *ptr, size_t size, size_t nmemb, FILE *f,
[56] Fix | Delete
size_t *nret);
[57] Fix | Delete
[58] Fix | Delete
/*% Flush */
[59] Fix | Delete
isc_result_t
[60] Fix | Delete
isc_stdio_flush(FILE *f);
[61] Fix | Delete
[62] Fix | Delete
isc_result_t
[63] Fix | Delete
isc_stdio_sync(FILE *f);
[64] Fix | Delete
/*%<
[65] Fix | Delete
* Invoke fsync() on the file descriptor underlying an stdio stream, or an
[66] Fix | Delete
* equivalent system-dependent operation. Note that this function has no
[67] Fix | Delete
* direct counterpart in the stdio library.
[68] Fix | Delete
*/
[69] Fix | Delete
[70] Fix | Delete
isc_result_t
[71] Fix | Delete
isc_stdio_fgetc(FILE *f, int *ret);
[72] Fix | Delete
[73] Fix | Delete
ISC_LANG_ENDDECLS
[74] Fix | Delete
[75] Fix | Delete
#endif /* ISC_STDIO_H */
[76] Fix | Delete
[77] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function