Cthulhu  0.2.10
Cthulhu compiler collection
source_info.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #pragma once
4 
5 #include "core/analyze.h"
6 
7 #include <stddef.h>
8 #include <stdint.h>
9 
14 
16 typedef uint_fast32_t source_line_t;
17 
19 #define CT_PRI_LINE PRIuFAST32
20 
22 #define CT_LINE_UNKNOWN UINT_FAST32_MAX
23 
25 typedef struct source_info_t
26 {
28  STA_FIELD_STRING const char *file;
29 
32 
35  STA_FIELD_STRING const char *function;
37 
40 #define CT_SOURCE_CURRENT {__FILE__, __LINE__, CT_FUNCTION_NAME}
41 
#define STA_FIELD_STRING
annotate a field as being a null terminated string
uint_fast32_t source_line_t
the line number in the source file
Definition: source_info.h:16
panic location information
Definition: source_info.h:26
source_line_t line
the line the panic occurred on
Definition: source_info.h:31
STA_FIELD_STRING const char * file
the file the panic occurred in
Definition: source_info.h:28