blob: 430f17b55f23de1b8e3e55ba43ba6b3815533765 [file] [log] [blame]
/// \file
/// Write simulation information in YAML format.
#ifndef __YAML_OUTPUT_H
#define __YAML_OUTPUT_H
#include <stdio.h>
/// Provide access to the YAML file in other compilation units.
extern FILE* yamlFile;
void yamlBegin(void);
void yamlEnd(void);
void yamlAppInfo(FILE* file);
void printSeparator(FILE* file);
#endif