"Fossies" - the Fresh Open Source Software Archive 
Member "xorriso-1.5.4/libburn/util.h" (30 Jan 2021, 505 Bytes) of package /linux/misc/xorriso-1.5.4.pl02.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "util.h" see the
Fossies "Dox" file reference documentation.
1 #ifndef __UTIL
2 #define __UTIL
3
4 /* for struct stat */
5 #include <sys/types.h>
6 #include <sys/stat.h>
7 #include <unistd.h>
8
9 /* ts A90905 */
10 int burn_util_make_printable_word(char **text, int flag);
11
12 /* ts B11216 */
13 char *burn_sfile_fgets(char *line, int maxl, FILE *fp);
14 char *burn_printify(char *msg);
15
16 /* ts B30521 */
17 void burn_int_to_lsb(int val, char *target);
18
19 /* ts B30609 */
20 double burn_get_time(int flag);
21
22 /* ts B40609 */
23 off_t burn_sparse_file_addsize(off_t write_start, struct stat *stbuf);
24
25 #endif