aboutsummaryrefslogtreecommitdiff
path: root/unittest/thash.c
blob: 6610e8f106ac3792cd73a2785d331919e02983fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*---------------------------------------------------------------------------*\

  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;
}