add artifact/ref IO, format parse, opreg formatting, PEL decode/run modules refactor PEL/ASL CLIs and pel_run/seed to use shared helpers update build to include new sources and headers
28 lines
655 B
C
28 lines
655 B
C
#ifndef AMDUAT_FORMAT_PARSE_H
|
|
#define AMDUAT_FORMAT_PARSE_H
|
|
|
|
#include "amduat/asl/artifact_io.h"
|
|
#include "amduat/format/output.h"
|
|
#include "amduat/format/ref.h"
|
|
|
|
#include <stdbool.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
bool amduat_format_ref_parse(const char *text,
|
|
amduat_format_ref_format_t *out_fmt);
|
|
|
|
bool amduat_format_output_parse(const char *text,
|
|
amduat_format_output_t *out_fmt);
|
|
|
|
bool amduat_asl_io_format_parse(const char *text,
|
|
amduat_asl_io_format_t *out_fmt);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /* AMDUAT_FORMAT_PARSE_H */
|