1 /* 2 * Copyright (c) 2018 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 #ifndef EXT_LOG_SYSTEM_ADAPTER_H 7 #define EXT_LOG_SYSTEM_ADAPTER_H 8 9 #ifdef __cplusplus 10 extern "C" { 11 #endif 12 13 /** @brief Adapt external logging system to the logging subsystem. */ 14 void ext_log_system_log_adapt(void); 15 16 #ifdef __cplusplus 17 } 18 #endif 19 20 #endif /* EXT_LOG_SYSTEM_ADAPTER_H */ 21