pipeplayer/pipe.h
2022-08-08 00:42:22 +00:00

8 lines
143 B
C

#ifndef __PIPE_H__
#define __PIPE_H__
#include <stddef.h>
size_t pipe_readline(char **buffer_ptr, char *pipe_path);
#endif /* __PIPE_H__ */