aboutsummaryrefslogtreecommitdiff
path: root/MultiSource/Benchmarks/DOE-ProxyApps-C/CoMD/yamlOutput.h
blob: 430f17b55f23de1b8e3e55ba43ba6b3815533765 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/// \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