cctools
shell.h
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 SHELL_H
8#define SHELL_H
9
10#include "buffer.h"
11
12int shellcode (const char *cmd, const char * const env[], const char *in, size_t len, buffer_t *Bout, buffer_t *Berr, int *status);
13
14#endif
15
16/* vim: set noexpandtab tabstop=8: */
String Buffer Operations.
Definition buffer.h:26