1 /*---------------------------------------------------------------------------*\
2 
3   FILE........: thash.c
4   AUTHOR......: David Rowe
5   DATE CREATED: July 2020
6 
7   Simple test program for freeDV API get hash function
8 
9 \*---------------------------------------------------------------------------*/
10 
11 #include <stdio.h>
12 #include "freedv_api.h"
13 
main(void)14 int main(void) {
15     printf("%s\n", freedv_get_hash());
16     return 0;
17 }
18 
19 
20