10 lines
175 B
Bash
10 lines
175 B
Bash
|
|
// retoor <retoor@molodetz.nl>
|
||
|
|
#ifndef R_BASH_EXECUTOR_H
|
||
|
|
#define R_BASH_EXECUTOR_H
|
||
|
|
|
||
|
|
#include <stdbool.h>
|
||
|
|
|
||
|
|
char *r_bash_execute(const char *command, bool interactive);
|
||
|
|
|
||
|
|
#endif
|