mirror of
https://github.com/radio95-rnt/rds95.git
synced 2026-02-27 04:43:52 +01:00
12 lines
254 B
C
12 lines
254 B
C
#include <fcntl.h>
|
|
#include <poll.h>
|
|
#include <sys/select.h>
|
|
#include "common.h"
|
|
#include "ascii_cmd.h"
|
|
#include "rds.h"
|
|
#include "modulator.h"
|
|
|
|
int open_control_pipe(char *filename);
|
|
void close_control_pipe();
|
|
void poll_control_pipe(RDSModulator* mod);
|