mirror of
https://github.com/NikitaIvanovV/ctpv.git
synced 2024-11-24 13:53:07 +01:00
8 lines
140 B
C
8 lines
140 B
C
|
#ifndef SHELL_H
|
||
|
#define SHELL_H
|
||
|
|
||
|
#define SHELL_ARGS(script, ...) \
|
||
|
{ "sh", "-c", script, "sh", __VA_ARGS__ __VA_OPT__(,) NULL }
|
||
|
|
||
|
#endif
|