xref: /openbmc/libcper/include/libcper/cper-parse-str.h (revision e42fb487839b242371b0150ab5b0b89c2d232976)
1 #ifndef CPER_PARSE_STR_H
2 #define CPER_PARSE_STR_H
3 
4 #include <stddef.h>
5 
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9 
10 char *cperbuf_to_str_ir(const unsigned char *cper, size_t size);
11 char *cperbuf_single_section_to_str_ir(const unsigned char *cper_section,
12 				       size_t size);
13 
14 #ifdef __cplusplus
15 }
16 #endif
17 
18 #endif
19