Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
813 views
1
#ifndef HEX_H
2
#define HEX_H
3
4
int hex_decode( const unsigned char *input, unsigned char **decoded );
5
void show_hex( const unsigned char *array, int length );
6
7
#endif
8
9