Hello,
i have a library which i have to pass (char **)&return_string to the function hci_scan as seen in this excerpt:
char return_string[250];
int num_hosts;
if ((num_hosts = hci_scan((char **) & return_string, 0x03)) > 0) {
//case where one or more devices are found...
} else {
//case where zero devices are found...
}
after this executes, what is in return_string? (so far all i have got is memory addresses)
thanks for you help