annotate src/libsndfile-1.0.27/Win32/testprog.c @ 168:ceec0dd9ec9c

Replace these with versions built using an older toolset (so as to avoid ABI compatibilities when linking on Ubuntu 14.04 for packaging purposes)
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 07 Feb 2020 11:51:13 +0000
parents cd6cdf86811e
children
rev   line source
cannam@125 1 /* Simple test program to make sure that Win32 linking to libsndfile is
cannam@125 2 ** working.
cannam@125 3 */
cannam@125 4
cannam@125 5 #include <stdio.h>
cannam@125 6
cannam@125 7 #include "sndfile.h"
cannam@125 8
cannam@125 9 int
cannam@125 10 main (void)
cannam@125 11 { static char strbuffer [256] ;
cannam@125 12 sf_command (NULL, SFC_GET_LIB_VERSION, strbuffer, sizeof (strbuffer)) ;
cannam@125 13 puts (strbuffer) ;
cannam@125 14 return 0 ;
cannam@125 15 }
cannam@125 16