1 /* 2 * Copyright (c) 2024 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 8 #ifndef DRIVERS_ENTROPY_FAKE_ENTROPY_NATIVE_BOTTOM_H 9 #define DRIVERS_ENTROPY_FAKE_ENTROPY_NATIVE_BOTTOM_H 10 11 #ifdef __cplusplus 12 extern "C" { 13 #endif 14 15 void entropy_native_seed(unsigned int seed, bool seed_random); 16 17 #ifdef __cplusplus 18 } 19 #endif 20 21 #endif /* DRIVERS_ENTROPY_FAKE_ENTROPY_NATIVE_BOTTOM_H */ 22