diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-11 17:01:33 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-11 17:01:33 +0200 |
commit | 9d23dbe9fded1100b50073d29d06d99b4adb37fa (patch) | |
tree | 16a5459fffb60a6d10056728988f2c9d522116da /src/s_struct.h | |
parent | alias in progress (diff) | |
download | 42-minishell-9d23dbe9fded1100b50073d29d06d99b4adb37fa.tar.gz 42-minishell-9d23dbe9fded1100b50073d29d06d99b4adb37fa.tar.bz2 42-minishell-9d23dbe9fded1100b50073d29d06d99b4adb37fa.tar.xz 42-minishell-9d23dbe9fded1100b50073d29d06d99b4adb37fa.tar.zst 42-minishell-9d23dbe9fded1100b50073d29d06d99b4adb37fa.zip |
Preparing files
Diffstat (limited to '')
-rw-r--r-- | src/s_struct.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/s_struct.h b/src/s_struct.h index b45af9f..d678c36 100644 --- a/src/s_struct.h +++ b/src/s_struct.h @@ -18,6 +18,13 @@ #include "d_define.h" +typedef struct s_lvars +{ + char *name; + char *val; + struct s_lvars *next; +} t_lvars; + typedef struct s_lalias { char *name; @@ -25,13 +32,6 @@ typedef struct s_lalias struct s_lalias *next; } t_lalias; -typedef struct s_lvars -{ - struct s_lvars *next; - char *name; - char *val; -} t_lvars; - /* ** redir(int8_t) index ** ------------------- |