add: env struct

This commit is contained in:
starnakin 2023-06-27 19:12:44 +02:00
parent 233809caff
commit 1a37e463e2

7
env/env.h vendored Normal file
View File

@ -0,0 +1,7 @@
#pragma once
typedef struct s_env
{
char *key;
char *value;
} env;