add: cmd struct

This commit is contained in:
starnakin 2023-06-27 19:14:35 +02:00
parent cc7c2ef0d1
commit 55a879e5f1

9
cmd/cmd.h Normal file
View File

@ -0,0 +1,9 @@
#pragma once
typedef struct s_cmd
{
char *executable;
char **args;
int fd_in;
int fd_out;
} cmd;