10 lines
102 B
C
10 lines
102 B
C
#pragma once
|
|
|
|
typedef struct s_cmd
|
|
{
|
|
char *executable;
|
|
char **args;
|
|
int fd_in;
|
|
int fd_out;
|
|
} cmd;
|