This repository has been archived on 2021-06-27. You can view files and clone it, but cannot push or open issues or pull requests.
modetw/src/md5_t.h

14 lines
231 B
C

#ifndef MD5_T
#define MD5_T
/**
* Wrapper to file
*/
typedef struct file_t {
char *name; /**< Absolute path to file */
unsigned char *hash; /**< MD5sum hash */
char *hash_s; /**< MD5sum hash as char* */
} file_t;
#endif