1 /* 2 * Copyright 2018 Oticon A/S 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 #ifndef BS_UTIL_RESULTS_H 7 #define BS_UTIL_RESULTS_H 8 9 #ifdef __cplusplus 10 extern "C"{ 11 #endif 12 13 #include <stdio.h> 14 15 char* bs_create_result_folder(const char* s_id); 16 FILE* bs_create_result_file(const char* s_id, const unsigned int dev_nbr, 17 const char* postfix, char* mode); 18 19 #ifdef __cplusplus 20 } 21 #endif 22 23 #endif 24