10 lines
193 B
C
10 lines
193 B
C
#ifndef PIPE_H
|
|
#define PIPE_H
|
|
|
|
/* Start the FIFO reader thread.
|
|
* Creates /tmp/looper_cmd (or aborts on error).
|
|
* Returns 0 on success, -1 on failure. */
|
|
int pipe_start_reader(void);
|
|
|
|
#endif
|