btstack_strcpy() function
Copy string (up to dst_size-1 characters) from src into dst buffer with terminating '\0'
Syntax
uint16_t btstack_strcpy(char * dst,
uint16_t dst_size,
const char * src);
Arguments
src
@retun bytes_copied including trailing 0
Notes
replaces strncpy + dst[dst_size-1] = '\0'