cctools
fast_popen.h
Go to the documentation of this file.
1/*
2Copyright (C) 2022 The University of Notre Dame
3This software is distributed under the GNU General Public License.
4See the file COPYING for details.
5*/
6
7#ifndef FAST_POPEN_H
8#define FAST_POPEN_H
9
10#include <stdio.h>
11
23FILE *fast_popen(const char *command);
24
30int fast_pclose(FILE * file);
31
32#endif
int fast_pclose(FILE *file)
Conclude a fast process stream.
FILE * fast_popen(const char *command)
Fast process invocation.