Merge from vendor branch CVS:
[dragonfly.git] / contrib / bind-9.2.4rc7 / lib / isc / include / isc / stdio.h
1 /*
2  * Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
3  * Copyright (C) 2000, 2001  Internet Software Consortium.
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15  * PERFORMANCE OF THIS SOFTWARE.
16  */
17
18 /* $Id: stdio.h,v 1.6.2.1 2004/03/09 06:12:02 marka Exp $ */
19
20 #ifndef ISC_STDIO_H
21 #define ISC_STDIO_H 1
22
23 #include <stdio.h>
24
25 #include <isc/lang.h>
26 #include <isc/result.h>
27
28 ISC_LANG_BEGINDECLS
29
30 isc_result_t
31 isc_stdio_open(const char *filename, const char *mode, FILE **fp);
32
33 isc_result_t
34 isc_stdio_close(FILE *f);
35
36 isc_result_t
37 isc_stdio_seek(FILE *f, long offset, int whence);
38
39 isc_result_t
40 isc_stdio_read(void *ptr, size_t size, size_t nmemb, FILE *f,
41                size_t *nret);
42
43 isc_result_t
44 isc_stdio_write(const void *ptr, size_t size, size_t nmemb, FILE *f,
45                 size_t *nret);
46
47 isc_result_t
48 isc_stdio_flush(FILE *f);
49 /*
50  * These functions are wrappers around the corresponding stdio functions,
51  * returning a detailed error code in the form of an an isc_result_t.  ANSI C
52  * does not guarantee that stdio functions set errno, hence these functions
53  * must use platform dependent methods (e.g., the POSIX errno) to construct the
54  * error code.
55  */
56
57 isc_result_t
58 isc_stdio_sync(FILE *f);
59 /*
60  * Invoke fsync() on the file descriptor underlying an stdio stream, or an
61  * equivalent system-dependent operation.  Note that this function has no
62  * direct counterpart in the stdio library.
63  */
64
65 ISC_LANG_ENDDECLS
66
67 #endif /* ISC_STDIO_H */