10 lines
196 B
Bash
Raw Normal View History

2026-01-28 19:34:39 +01:00
// retoor <retoor@molodetz.nl>
#ifndef R_BASH_EXECUTOR_H
#define R_BASH_EXECUTOR_H
#include <stdbool.h>
2026-01-29 06:01:05 +01:00
char *r_bash_execute(const char *command, bool interactive, int timeout_seconds);
2026-01-28 19:34:39 +01:00
#endif