ctpv/shell.h

8 lines
140 B
C
Raw Normal View History

2022-05-25 23:57:50 +02:00
#ifndef SHELL_H
#define SHELL_H
#define SHELL_ARGS(script, ...) \
{ "sh", "-c", script, "sh", __VA_ARGS__ __VA_OPT__(,) NULL }
#endif