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