-
-
Notifications
You must be signed in to change notification settings - Fork 117
/
hash_print.h
48 lines (38 loc) · 1.1 KB
/
hash_print.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* hash_print.h - functions to print message digests */
#ifndef HASH_PRINT_H
#define HASH_PRINT_H
#include <stdio.h>
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* Name and other info of a hash function
*/
typedef struct print_hash_info
{
const char* name;
const char* bsd_name;
unsigned hash_id;
char short_name[20];
char short_char;
} print_hash_info;
extern print_hash_info hash_info_table[];
struct file_info;
struct file_t;
struct print_item;
struct strbuf_t;
/* initialization of static data */
void init_hash_info_table(void);
struct strbuf_t* init_printf_format(void);
/* formatted output of message digests and file information */
struct print_item* parse_print_string(const char* format, uint64_t* hash_mask);
int print_line(FILE* out, unsigned out_mode, struct print_item* list, struct file_info* info);
void free_print_list(struct print_item* list);
/* SFV format functions */
int print_sfv_banner(FILE* out);
int print_sfv_header_line(FILE* out, unsigned out_mode, struct file_t* file);
#ifdef __cplusplus
} /* extern "C" */
#endif /* __cplusplus */
#endif /* HASH_PRINT_H */