diff options
| author | verdant <im@verdant.ee> | 2026-07-21 19:00:56 +0800 |
|---|---|---|
| committer | verdant <im@verdant.ee> | 2026-07-21 19:00:56 +0800 |
| commit | 015263141def1a33649fdb0e85c8c137a7d522f2 (patch) | |
| tree | d16c26f32ce46dc09567791aec0f40f1d6738fc5 /err.h | |
| parent | daacae045dc8b33227b006ab801c4f31884129a7 (diff) | |
| download | sf-015263141def1a33649fdb0e85c8c137a7d522f2.tar.gz sf-015263141def1a33649fdb0e85c8c137a7d522f2.zip | |
Add error handing functions
Diffstat (limited to 'err.h')
| -rw-r--r-- | err.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -0,0 +1,8 @@ +#ifndef SS_ERR_H +#define SS_ERR_H + +#include <stdarg.h> + +void die(const char* err, ...); + +#endif /* SS_ERR_H */ |
