diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-02-17 19:32:30 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-02-17 19:32:30 -0500 |
| commit | d46925dbfa8627a6a874545630c2acb6975bfdea (patch) | |
| tree | 2b726ea50adf91b668a24b25d4d9e6ec7f7c2663 /builtins/functions.h | |
| parent | 7355b2f7fe6f5dda2aee8feca025350146ccd0f5 (diff) | |
Cleanup of builtins
Diffstat (limited to 'builtins/functions.h')
| -rw-r--r-- | builtins/functions.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/builtins/functions.h b/builtins/functions.h index d5c9cf8b..0f4beacf 100644 --- a/builtins/functions.h +++ b/builtins/functions.h @@ -6,10 +6,12 @@ #include "types.h" +extern const char *SSS_HASH_VECTOR; + void builtin_say(CORD str, CORD end); void builtin_fail(CORD fmt, ...); CORD builtin_last_err(); -void builtin_doctest(const char *label, CORD expr, const char *type, bool use_color, const char *expected, const char *filename, int start, int end); +void __doctest(CORD label, void *expr, TypeInfo *type, CORD expected, const char *filename, int start, int end); uint32_t generic_hash(const void *obj, const TypeInfo *type); int32_t generic_compare(const void *x, const void *y, const TypeInfo *type); |
