Cadabra
Computer algebra system for field theory problems
Loading...
Searching...
No Matches
popen2.hh
Go to the documentation of this file.
1
2#pragma once
3
4#include <internal/unistd.h>
5#include <errno.h>
6#include <stdio.h>
7#include <stdlib.h>
8#include <sys/types.h>
9#include <string>
10
11FILE * popen2(std::string command, std::string type, int & pid);
12int pclose2(FILE * fp, pid_t pid);
FILE * popen2(std::string command, std::string type, int &pid)
Definition popen2.cc:11
int pclose2(FILE *fp, pid_t pid)
Definition popen2.cc:55