blob: 6d267b660e2fb9f72372bc91f3dd40b8c1fd7e37 [file] [log] [blame]
Minos Galanakis2c824b42025-03-20 09:28:45 +00001/**
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
21typedef union {
22 size_t len;
23 intmax_t sint;
24} mbedtls_test_argument_t;
25
26#endif /* TEST_ARGUMENTS_H */