blob: d26d844adfc557e03b09778f7c74c1197268b24c [file] [log] [blame]
Alexandre Lision7c6f4a62013-09-05 13:27:01 -04001/* Simple test program to make sure that Win32 linking to libsndfile is
2** working.
3*/
4
5#include <stdio.h>
6
7#include "sndfile.h"
8
9int
10main (void)
11{ static char strbuffer [256] ;
12 sf_command (NULL, SFC_GET_LIB_VERSION, strbuffer, sizeof (strbuffer)) ;
13 puts (strbuffer) ;
14 return 0 ;
15}
16