]> wimlib.net Git - wimlib/blob - include/wimlib/textfile.h
wimlib_iterate_dir_tree(): iterate in default case order
[wimlib] / include / wimlib / textfile.h
1 #ifndef _WIMLIB_TEXTFILE_H_
2 #define _WIMLIB_TEXTFILE_H_
3
4 #include "wimlib/types.h"
5
6 struct string_set {
7         tchar **strings;
8         size_t num_strings;
9         size_t num_alloc_strings;
10 };
11
12 #define STRING_SET_INITIALIZER \
13         { .strings = NULL, .num_strings = 0, .num_alloc_strings = 0, }
14
15 #define STRING_SET(_strings) \
16         struct string_set _strings = STRING_SET_INITIALIZER
17
18 typedef int (*line_mangle_t)(tchar *line, const tchar *filename,
19                              unsigned long line_no);
20
21 struct text_file_section {
22         const tchar *name;
23         struct string_set *strings;
24 };
25
26 #define LOAD_TEXT_FILE_REMOVE_QUOTES 0x00000001
27 #define LOAD_TEXT_FILE_NO_WARNINGS   0x00000002
28
29 extern int
30 do_load_text_file(const tchar *path,
31                   const void *buf, size_t bufsize, void **mem_ret,
32                   const struct text_file_section *pos_sections,
33                   int num_pos_sections, int flags,
34                   line_mangle_t mangle_line);
35
36 static inline int
37 load_text_file(const tchar *path, void **mem_ret,
38                const struct text_file_section *pos_sections,
39                int num_pos_sections, line_mangle_t mangle_line)
40 {
41         return do_load_text_file(path, NULL, 0, mem_ret,
42                                  pos_sections, num_pos_sections,
43                                  LOAD_TEXT_FILE_REMOVE_QUOTES, mangle_line);
44 }
45
46 #endif /* _WIMLIB_TEXTFILE_H_ */