This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef TC_H | |
#define TC_H | |
#define TC_BLOCK_SIZE 8192 /* Size of a Trenta block in bytes. */ | |
#define TC_HASH_SIZE 40 /* Size of Trenta's block hash in bytes. */ | |
struct tclient; | |
typedef struct tclient TClient; | |
typedef unsigned int TLength; |