Rename function to simplify

For consistency with sc_adb_parse_device(), do not include "from_output"
in the function name.
This commit is contained in:
Romain Vimont
2022-05-24 21:20:27 +02:00
parent 55e65fa270
commit b1d8c72780
4 changed files with 11 additions and 11 deletions

View File

@@ -199,7 +199,7 @@ sc_adb_parse_device_ip_from_line(char *line) {
}
char *
sc_adb_parse_device_ip_from_output(char *str) {
sc_adb_parse_device_ip(char *str) {
size_t idx_line = 0;
while (str[idx_line] != '\0') {
char *line = &str[idx_line];