diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-02-09 18:05:28 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-02-09 18:05:28 +0100 |
| commit | 799d930c2540933c23a1b6ba28e8e5e4f3bccb64 (patch) | |
| tree | 7a714abcafc48060b832e7b33c64ab8e1b29a559 /smash/env.h | |
| parent | 9153b4062c7b6db6119e035dc5e53184aac9fa3a (diff) | |
add variable system via env
Diffstat (limited to 'smash/env.h')
| -rw-r--r-- | smash/env.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/smash/env.h b/smash/env.h new file mode 100644 index 0000000..0c233e9 --- /dev/null +++ b/smash/env.h @@ -0,0 +1,9 @@ +#ifndef SMASH_ENV_H +#define SMASH_ENV_H + +#include "../lib/sys/sizes.h" + +void init_arg_env(int argc, const char **argv); +char *new_line_and_replace_vars(const char *line, u64 n); + +#endif |