freedv-gui/codec2-1.2.0/unittest/thash.c

19 lines
409 B
C

/*---------------------------------------------------------------------------*\
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;
}