util.h (222B)
1 #ifndef UTIL_H_1e491544 2 #define UTIL_H_1e491544 3 4 #include <stdio.h> 5 #include <stdlib.h> 6 #include <string.h> 7 8 /* utility funcs */ 9 10 int hex_to_base64(char **b64, char *hex); 11 int base64_to_hex(char **hex, char *b64); 12 13 #endif