update: added extremely basic parsing, only for separated environment variables

This commit is contained in:
2025-10-23 14:10:48 +02:00
parent 92ed2bbd3e
commit b55dd50aa5
4 changed files with 149 additions and 1 deletions

20
include/chardefs.h Normal file
View File

@@ -0,0 +1,20 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* chardefs.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: sede-san <sede-san@student.42madrid.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/10/23 13:23:25 by sede-san #+# #+# */
/* Updated: 2025/10/23 13:24:41 by sede-san ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef CHARDEFS_H
# define CHARDEFS_H
# define DOLLAR '$'
# define SINGLE_QUOTE '\''
# define DOUBLE_QUOTE '\"'
#endif /* CHARDEFS_H */