Implement the export function, change tokenization
authorLukas Jiriste <ljiriste@student.42prague.com>
Fri, 23 Aug 2024 16:46:21 +0000 (18:46 +0200)
committerLukas Jiriste <ljiriste@student.42prague.com>
Fri, 23 Aug 2024 16:46:21 +0000 (18:46 +0200)
commitaac1d762760147a71445db54ae97b25116ddd1c2
treee79909deb158a829a2ff0e3438dbde86016e63ca
parentf657567d7f7ba338a0cba0d01ad96ef28deeb417
Implement the export function, change tokenization

The tokenization had to be changed because "export te=te" was refused by
the parser. The "te=te" part was tokenized as ASSIGNMENT_WORD which can
only occur before command. So any ASSIGNMENT_WORD after command name is
now recognized as WORD.
Makefile
inc/execution.h
src/builtins/export.c [new file with mode: 0644]
src/execution.c
src/tokenization.c