Changeset 3861 in MondoRescue for branches/3.3/mondo/src/common
- Timestamp:
- Mar 7, 2024, 11:01:16 AM (16 months ago)
- Location:
- branches/3.3/mondo/src/common
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3/mondo/src/common/libmondo-files-EXT.h
r3610 r3861 8 8 extern char *calc_checksum_of_file(char *filename); 9 9 extern long count_lines_in_file(char *filename); 10 extern bool does_file_exist(c har *filename);10 extern bool does_file_exist(const char *filename); 11 11 extern void exclude_nonexistent_files(char *inout); 12 12 extern int figure_out_kernel_path_interactively_if_necessary(char *kernel); -
branches/3.3/mondo/src/common/libmondo-files.c
r3854 r3861 177 177 * @return TRUE if it exists, FALSE otherwise. 178 178 */ 179 bool does_file_exist(c har *filename)179 bool does_file_exist(const char *filename) 180 180 { 181 181 -
branches/3.3/mondo/src/common/libmondo-files.h
r3610 r3861 10 10 char *calc_checksum_of_file(char *filename); 11 11 long count_lines_in_file(char *filename); 12 bool does_file_exist(char *filename);13 12 void exclude_nonexistent_files(char *inout); 14 13 int figure_out_kernel_path_interactively_if_necessary(char *kernel); -
branches/3.3/mondo/src/common/libmondo-verify.h
r3858 r3861 24 24 extern void close_progress_form(void); 25 25 extern long count_lines_in_file(char *); 26 extern bool does_file_exist(c har *);26 extern bool does_file_exist(const char *); 27 27 extern void exclude_nonexistent_files(char *); 28 extern void fatal_error(c har *);28 extern void fatal_error(const char *); 29 29 extern int find_and_mount_actual_cd(char *); 30 30 extern int find_cdrom_device(char *, bool); … … 87 87 extern int g_current_media_number; 88 88 89 extern void mvaddstr_and_log_it(int, int, c har *);89 extern void mvaddstr_and_log_it(int, int, const char *); 90 90 91 91 extern bool ask_me_yes_or_no(char *); -
branches/3.3/mondo/src/common/newt-specific-EXT.h
r3858 r3861 8 8 extern void fatal_error(const char *error_string); 9 9 extern void finish(int signal); 10 extern void mvaddstr_and_log_it(int y, int x, c har *output);10 extern void mvaddstr_and_log_it(int y, int x, const char *output); 11 11 extern void open_evalcall_form(char *title); 12 12 extern void open_progress_form(char *title, char *b1, char *b2, char *b3, -
branches/3.3/mondo/src/common/newt-specific.c
r3858 r3861 578 578 * @param output The string to write. 579 579 */ 580 void mvaddstr_and_log_it(int y, int x, c har *output) {580 void mvaddstr_and_log_it(int y, int x, const char *output) { 581 581 582 582 assert_string_is_neither_NULL_nor_zerolength(output);
Note:
See TracChangeset
for help on using the changeset viewer.