22 lines
385 B
C
22 lines
385 B
C
/*
|
|
* TEXT TO AUDIO OUTPUT
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sndfile.h>
|
|
|
|
#include "support.h"
|
|
|
|
/* --------------------------------------------------------------- */
|
|
|
|
/* --------------------------------------------------------------- */
|
|
int main(int argc, char *argv[])
|
|
{
|
|
|
|
print_version(argv[0]);
|
|
|
|
return 0;
|
|
}
|
|
/* --------------------------------------------------------------- */
|