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