DD2-monitor/audio/t.c

24 lines
428 B
C
Raw Normal View History

2019-04-13 11:43:33 +02:00
/*
* Audio player for the phytotron
*/
#include <stdio.h>
2019-05-27 15:15:48 +02:00
#include <stdlib.h>
2019-04-13 11:43:33 +02:00
#include "player.h"
/* --------------------------------------------------------------------- */
int main(int argc, char *argv[])
{
char *wavname = "1337.wav";
int foo;
foo = blast_this_file(wavname);
fprintf(stderr, "audio blaster -> %d\n", foo);
return 0;
}
/* --------------------------------------------------------------------- */