379_demos/assignment1/struct.c

12 lines
194 B
C
Raw Normal View History

2024-09-24 19:36:42 -06:00
#include <stdbool.h>
typedef struct Cmd {
char* command;
char** args;
int read_from;
int write_to;
bool is_background;
bool is_internal;
struct Cmd* pipe_to;
} Cmd;