diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2022-12-14 18:26:49 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2022-12-14 18:26:49 +0100 |
| commit | d179f1846f9372920ef02f08cfb4d3abe99b383f (patch) | |
| tree | 4b6ddc71566be95a1ce520ef9d957f4cac1af6c9 /smash/variables.h | |
first commit
Diffstat (limited to 'smash/variables.h')
| -rw-r--r-- | smash/variables.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/smash/variables.h b/smash/variables.h new file mode 100644 index 0000000..af71ee4 --- /dev/null +++ b/smash/variables.h @@ -0,0 +1,8 @@ +#ifndef VARIABLES_H +#define VARIABLES_H + +void set_variable(const char *name, const char *value); +const char *get_variable(const char *name); +void init_variables(); + +#endif |