20 lines
333 B
C
20 lines
333 B
C
|
|
#ifndef AMDUAT_TESTS_CONFORMANCE_RESULT_H
|
||
|
|
#define AMDUAT_TESTS_CONFORMANCE_RESULT_H
|
||
|
|
|
||
|
|
#include <stddef.h>
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
typedef struct {
|
||
|
|
const char *backend;
|
||
|
|
int status;
|
||
|
|
} amduat_conformance_backend_result_t;
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
} /* extern "C" */
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* AMDUAT_TESTS_CONFORMANCE_RESULT_H */
|