1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/unittests/tests-core/tests-core-xfa.h
2021-02-16 14:55:26 +01:00

37 lines
618 B
C

/*
* Copyright (C) 2018 Eistec AB
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @addtogroup unittests
* @{
*
* @file
* @brief Declarations for the core/xfa unit test
*
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
*/
#ifndef TESTS_CORE_XFA_H
#define TESTS_CORE_XFA_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
unsigned val;
const char *text;
} xfatest_t;
#ifdef __cplusplus
}
#endif
#endif /* TESTS_CORE_XFA_H */
/** @} */