mirror of https://github.com/opa334/TrollStore.git
6 lines
165 B
C
6 lines
165 B
C
|
#include <stdint.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
uint64_t align_to_size(int size, int alignment);
|
||
|
int count_digits(int64_t num);
|
||
|
void print_hash(uint8_t *hash, size_t size);
|