Lawrence Tang | f0f9557 | 2022-07-07 16:56:22 +0100 | [diff] [blame] | 1 | /** |
2 | * Describes functions for parsing JSON IR CPER data into binary CPER format. | ||||
3 | * | ||||
4 | * Author: Lawrence.Tang@arm.com | ||||
5 | **/ | ||||
6 | |||||
7 | #include <stdio.h> | ||||
8 | #include "json.h" | ||||
9 | #include "cper-parse.h" | ||||
10 | |||||
11 | //Converts the given JSON IR CPER representation into CPER binary format, piped to the provided file stream. | ||||
12 | void ir_to_cper(json_object* ir, FILE* out) | ||||
13 | { | ||||
14 | //... | ||||
15 | } |