| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | | - |
| 5 | | - |
| 6 | | - |
| 7 | | - |
| 8 | | - |
| 9 | | - |
| 10 | | - |
| 11 | | - |
| 12 | | - |
| 13 | | - |
| 14 | | - |
| 15 | | - |
| 16 | | - |
| 17 | #ifndef _XBINARY_IO_H | - |
| 18 | #define _XBINARY_IO_H | - |
| 19 | | - |
| 20 | #include "binary-io.h" | - |
| 21 | | - |
| 22 | #ifndef _GL_INLINE_HEADER_BEGIN | - |
| 23 | #error "Please include config.h first." | - |
| 24 | #endif | - |
| 25 | _GL_INLINE_HEADER_BEGIN | - |
| 26 | #ifndef XBINARY_IO_INLINE | - |
| 27 | # define XBINARY_IO_INLINE _GL_INLINE | - |
| 28 | #endif | - |
| 29 | | - |
| 30 | #if O_BINARY | - |
| 31 | extern _Noreturn void xset_binary_mode_error (void); | - |
| 32 | #else | - |
| 33 | XBINARY_IO_INLINE void xset_binary_mode_error (void) {} | - |
| 34 | #endif | - |
| 35 | | - |
| 36 | | - |
| 37 | | - |
| 38 | | - |
| 39 | XBINARY_IO_INLINE void | - |
| 40 | xset_binary_mode (int fd, int mode) | - |
| 41 | { | - |
| 42 | if (set_binary_mode (fd, mode) < 0)| TRUE | never evaluated | | FALSE | evaluated 16507 times by 13 testsEvaluated by:- base32
- base64
- cat
- cksum
- head
- od
- split
- sum
- tac
- tail
- tee
- tr
- wc
|
| 0-16507 |
| 43 | xset_binary_mode_error (); never executed: xset_binary_mode_error (); | 0 |
| 44 | }executed 16507 times by 13 tests: end of blockExecuted by:- base32
- base64
- cat
- cksum
- head
- od
- split
- sum
- tac
- tail
- tee
- tr
- wc
| 16507 |
| 45 | | - |
| 46 | _GL_INLINE_HEADER_END | - |
| 47 | | - |
| 48 | #endif /* _XBINARY_IO_H */ | - |
| | |