summaryrefslogtreecommitdiffstats
path: root/src/b_export.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/b_export.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/b_export.c b/src/b_export.c
index 5e7ee14..95ccf40 100644
--- a/src/b_export.c
+++ b/src/b_export.c
@@ -64,6 +64,7 @@ uint8_t
r = 0;
while (*ptr)
{
+ ft_printf("export: [%s]\n", *ptr);
next = 0;
if (!check_valid_identifier(*ptr))
{
@@ -72,7 +73,16 @@ uint8_t
r = 1;
}
if (next == 0 && !check_equals(*ptr))
+ {
next = 1;
+ /* TODO: export already set variable */
+ /* examples: */
+ /* ~> QWE=qwe */
+ /* ~> export QWE */
+ /* -------------- */
+ /* # non-existant variable QWE */
+ /* ~> export QWE */
+ }
ptr++;
}
/* TODO: finish export */