1 | /*
|
---|
2 | * $Id: libmondo-string.h 2355 2009-08-28 22:56:50Z bruno $
|
---|
3 | */
|
---|
4 |
|
---|
5 | char *build_partition_name(char *partition, const char *drive, int partno);
|
---|
6 | void center_string(char *in_out, int width);
|
---|
7 | char *commarize(char *);
|
---|
8 | char *disklist_entry_to_string(struct list_of_disks *disklist, int lino);
|
---|
9 | long friendly_sizestr_to_sizelong(char *incoming);
|
---|
10 | char *leftpad_string(char *incoming, int width);
|
---|
11 | char *marker_to_string(int marker);
|
---|
12 | char *mountlist_entry_to_string(struct mountlist_itself *mountlist,
|
---|
13 | int lino);
|
---|
14 | char *number_of_disks_as_string(int noof_disks, char *label);
|
---|
15 | char *number_to_text(int i);
|
---|
16 | void resolve_naff_tokens(char *output, char *ip, char *value, char *token);
|
---|
17 | char *slice_fname(long bigfileno, long sliceno, char *path, char *s);
|
---|
18 | int special_dot_char(int i);
|
---|
19 | int strcmp_inc_numbers(char *stringA, char *stringB);
|
---|
20 | char *strip_afio_output_line(char *input);
|
---|
21 | void strip_spaces(char *in_out);
|
---|
22 | char *trim_empty_quotes(char *incoming);
|
---|
23 | char *truncate_to_drive_name(char *partition);
|
---|
24 | char *turn_raid_level_number_to_string(int raid_level);
|
---|
25 | void printf_silly_message(void);
|
---|
26 |
|
---|
27 | int compare_two_filelist_entries(void *va, void *vb);
|
---|
28 | int severity_of_difference(char *filename, char *out_reason);
|
---|
29 |
|
---|
30 | char *percent_media_full_comment();
|
---|
31 | char *media_descriptor_string(t_bkptype);
|
---|
32 | inline void turn_wildcard_chars_into_literal_chars(char *out, char *in);
|
---|