zmidimap/include/popen.h
zawz e7c1384079 +Added no-log option
*Safer kill method
2019-08-06 17:49:58 +02:00

11 lines
197 B
C

#ifndef POPEN_HPP
#define POPEN_HPP
#include <stdio.h>
#include <signal.h>
FILE* popen2(const char* command, const char* type, pid_t* pid);
int pclose2(FILE* fp, pid_t pid);
#endif //POPEN_HPP