mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-11-28 07:21:21 +08:00
11 lines
129 B
C
11 lines
129 B
C
#ifndef __COMMAND_H
|
|
#define __COMMAND_H
|
|
|
|
typedef struct {
|
|
char *path;
|
|
char **argv;
|
|
char **envp;
|
|
} command_t;
|
|
|
|
#endif
|