blob: 364f2ea58aaac19ff056b91c7b1eb7c7bb662046 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// SPDX-License-Identifier: GPL-3.0-or-later
/** @file unit_test.h
* @brief This is the header for unit_test.c
*/
#ifndef LOGS_MANAGEMENT_UNIT_TEST_H_
#define LOGS_MANAGEMENT_UNIT_TEST_H_
int logs_management_unittest(void);
#endif // LOGS_MANAGEMENT_UNIT_TEST_H_
|