code / tomo

Lines41.8K C24.0K Markdown9.8K YAML5.0K Tomo2.3K
8 others 800
make256 Python231 Shell220 INI47 Text21 SVG16 Lua6 diff3
(9 lines)
1 // Failure functions
3 #pragma once
5 #include "datatypes.h"
7 _Noreturn void fail_text(Text_t message);
8 _Noreturn void fail_source(const char *filename, int start, int end, Text_t message);
9 Text_t builtin_last_err();