Files
looper/engine/src/pipe.h
2026-05-13 17:57:41 +00:00

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