#ifndef ANI_BASE32_H
#defineANI_BASE32_H/**
* Takes care of decoding a base32-encoded blake3 hash sum.
*
* The input is assumed to be an array of 53 base32 characters, dst is assumed
* to be able to hold at least 32 bytes.
*/voidb32dec(u8 *,charconst*);voidb32enc(char*, u8 const*);#endif