libsignal-protocol-c  master
utility.h
1 
2 #ifndef __UTILITY_H__
3 #define __UTILITY_H__
4 
5 #include "fe.h"
6 
7 void print_vector(const char* name, const unsigned char* v);
8 void print_bytes(const char* name, const unsigned char* v, int numbytes);
9 void print_fe(const char* name, const fe in);
10 
11 #endif