xref: /openbmc/libcper/ir-parse.c (revision f0f95574)
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 }