1 /*
2  * Copyright 2018 Oticon A/S
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef BS_UTIL_STRING_H
8 #define BS_UTIL_STRING_H
9 
10 #include "bs_types.h"
11 
12 char * bs_time_to_str( char* dest, bs_time_t time);
13 
14 int bs_number_strlen(long long int a);
15 
16 void bs_read_hex_dump(char *s,uint8_t *buffer, uint size);
17 void bs_hex_dump(char* buffer, const uint8_t *bytes, size_t nbytes);
18 
19 #endif
20