blob: 6d267b660e2fb9f72372bc91f3dd40b8c1fd7e37 [file] [log] [blame]
Gilles Peskineb3c2eaf2022-12-04 13:10:55 +01001/**
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
Dave Rodgman16799db2023-11-02 19:47:20 +000011 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Gilles Peskineb3c2eaf2022-12-04 13:10:55 +010012 */
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;
Gilles Peskine872948c2022-12-04 15:32:54 +010023 intmax_t sint;
Gilles Peskineb3c2eaf2022-12-04 13:10:55 +010024} mbedtls_test_argument_t;
25
26#endif /* TEST_ARGUMENTS_H */