zzsh/cmd/cmd.h
2023-06-27 19:14:45 +02:00

10 lines
102 B
C

#pragma once
typedef struct s_cmd
{
char *executable;
char **args;
int fd_in;
int fd_out;
} cmd;