blob: fa2a3261e12988d6f8735e42ada3bb421b6fdf3f [file] [log] [blame]
/**
* Describes functions for parsing JSON IR CPER data into binary CPER format.
*
* Author: Lawrence.Tang@arm.com
**/
#include <stdio.h>
#include "json.h"
#include "cper-parse.h"
//Converts the given JSON IR CPER representation into CPER binary format, piped to the provided file stream.
void ir_to_cper(json_object* ir, FILE* out)
{
//...
}