1 /**
2  * \file arguments.h
3  *
4  * \brief Manipulation of test arguments.
5  *
6  * Much of the code is in host_test.function, to be migrated here later.
7  */
8 
9 /*
10  *  Copyright The Mbed TLS Contributors
11  *  SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
12  */
13 
14 #ifndef TEST_ARGUMENTS_H
15 #define TEST_ARGUMENTS_H
16 
17 #include "mbedtls/build_info.h"
18 #include <stdint.h>
19 #include <stdlib.h>
20 
21 typedef union {
22     size_t len;
23     intmax_t sint;
24 } mbedtls_test_argument_t;
25 
26 #endif /* TEST_ARGUMENTS_H */
27