diff options
author | kartofen <mladenovnasko0@gmail.com> | 2024-08-30 17:01:28 +0300 |
---|---|---|
committer | kartofen <mladenovnasko0@gmail.com> | 2024-08-30 17:01:28 +0300 |
commit | e1ceef73192f0300ff9b10ba9a16475fbebeaa5f (patch) | |
tree | 0cb2bc5336a522b965c1d171b433044591721e20 /src/value.h | |
parent | de3a062bfc206bf0373f96f4f6cc8c74ffcbab48 (diff) |
proper repl, stylistic changes, removed trailing whitespace
Diffstat (limited to 'src/value.h')
-rw-r--r-- | src/value.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/value.h b/src/value.h index ed30b99..61b8252 100644 --- a/src/value.h +++ b/src/value.h @@ -16,13 +16,13 @@ typedef value_t (*builtin_proc_t)(value_t *args); X(VALUE_INT) \ X(VALUE_CONS) \ X(VALUE_PROC) \ - X(VALUE_PROC_BUILTIN) + X(VALUE_PROC_BUILTIN) #define TO_ENUM(type) type, #define TO_STRING(type) #type, extern const char * const value_type_string[]; - + struct value { enum value_type { VALUE_TYPES(TO_ENUM) @@ -40,7 +40,7 @@ struct value { struct proc { env_t parent_env; - + value_t *arg_keys; size_t argc; |