get rid of unsignedchar

This commit is contained in:
2025-03-16 16:17:16 +01:00
parent b3fe018384
commit 4d23878ae2
8 changed files with 89 additions and 176 deletions
+6 -1
View File
@@ -31,9 +31,12 @@ static void *control_pipe_worker(void* modulator) {
pthread_exit(NULL);
}
static void show_version() {
printf("rds95 (a RDS encoder by radio95) version 1.0");
}
static void show_help(char *name) {
printf(
"rds95 (a RDS encoder by radio95) version %.1f\n"
"\n"
"Usage: %s [options]\n"
"\n"
@@ -46,6 +49,8 @@ static void show_help(char *name) {
}
int main(int argc, char **argv) {
show_version();
char control_pipe[51] = "\0";
pa_simple *device;