// SPDX-License-Identifier: Apache-2.0 // SPDX-FileCopyrightText: Copyright OpenBMC Authors #ifndef HEX_TEST_H #define HEX_TEST_H void test_hex_encode_good(void); void test_hex_decode_good(void); void test_hex_error_cases(void); void test_hex_roundtrip(void); #endif