Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download
Views: 549
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