annotate src/libsndfile-1.0.27/Win32/testprog.c @ 148:b4bfdf10c4b3

Update Win64 capnp builds to v0.6
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 22 May 2017 18:56:49 +0100
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