source: MondoRescue/trunk/mondo/mondo/common/libmondo-files.h@ 171

Last change on this file since 171 was 171, checked in by bcornec, 18 years ago

memory management continues:

  • mondoarchive handled completely
  • bkpinfo, begining of dyn. alloc.
  • lot of changes around memory everywhere

=> even if it compiles, i'm pretty sure it doesn't work yet (even not tried)

  • Property svn:keywords set to Id
File size: 1.7 KB
Line 
1/* libmondo-files.h
2 * $Id: libmondo-files.h 171 2005-12-08 16:20:29Z bcornec $
3 */
4
5#include "crcttt.h"
6
7
8unsigned int updcrc(unsigned int crc, unsigned int c);
9unsigned int updcrcr(unsigned int crc, unsigned int c);
10char *calc_checksum_of_file(char *filename);
11char *calc_file_ugly_minichecksum(char *curr_fname);
12char *calc_file_ugly_minichecksum(char *curr_fname);
13long count_lines_in_file(char *filename);
14bool does_file_exist(char *filename);
15void exclude_nonexistent_files(char *inout);
16int figure_out_kernel_path_interactively_if_necessary(char *kernel);
17char *find_home_of_exe(char *fname);
18int get_trackno_from_logfile(char *logfile);
19int grab_percentage_from_last_line_of_file(char *filename);
20char *last_line_of_file(char *filename);
21long long length_of_file(char *filename);
22int make_hole_for_file(char *outfile_fname);
23void make_list_of_files_to_ignore(char *ignorefiles_fname,
24 char *filelist_fname,
25 char *cklist_fname);
26long noof_lines_that_match_wildcard(char *filelist_fname, char *wildcard);
27void register_pid(pid_t pid, char *name_str);
28long size_of_all_biggiefiles_K(struct s_bkpinfo *bkpinfo);
29long long space_occupied_by_cd(char *mountpt);
30int whine_if_not_found(char *fname);
31int write_one_liner_data_file(char *fname, char *contents);
32
33void copy_mondo_and_mindi_stuff_to_scratchdir(struct s_bkpinfo *bkpinfo);
34void store_nfs_config(struct s_bkpinfo *bkpinfo);
35void estimate_noof_media_required(struct s_bkpinfo *bkpinfo, long);
36bool is_this_file_compressed(char *);
37
38
39
40
41
42
43
44
45int make_hole_for_dir(char *outdir_fname);
46long size_of_partition_in_mountlist_K(char *tmpdir, char *dev);
47int make_grub_install_scriptlet(char *outfile);
48
49int read_one_liner_data_file(char *fname, char *contents);
50int mode_of_file(char *fname);
51void paranoid_alloc(char *alloc, char *orig);
Note: See TracBrowser for help on using the repository browser.