diff options
Diffstat (limited to 'src/logerr.h')
-rw-r--r-- | src/logerr.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/logerr.h b/src/logerr.h new file mode 100644 index 0000000..47228ab --- /dev/null +++ b/src/logerr.h @@ -0,0 +1,34 @@ +#ifndef GISTATIC_LOGERR_H +#define GISTATIC_LOGERR_H + +#include <stddef.h> + +void +logerr_file( + const char *const s, + const char *const msg, + const char *const file, + const int lineno +); + +void +logerrs_file( + const char *const pre, + const char *const mid, + const char *const post, + const char *const msg, + const char *const file, + const int lineno +); + +void +logerrl_file( + const char *const pre, + const size_t mid, + const char *const post, + const char *const msg, + const char *const file, + const int lineno +); + +#endif |