Home
last modified time | relevance | path

Searched refs:line_ptr (Results 1 – 1 of 1) sorted by relevance

/hal_espressif-3.7.0/components/bt/common/osi/
Dconfig.c594 char *line_ptr = trim(line); in config_parse() local
598 if (*line_ptr == '\0' || *line_ptr == '#') { in config_parse()
602 if (*line_ptr == '[') { in config_parse()
603 size_t len = strlen(line_ptr); in config_parse()
604 if (line_ptr[len - 1] != ']') { in config_parse()
608 strncpy(section, line_ptr + 1, len - 2); in config_parse()
611 char *split = strchr(line_ptr, '='); in config_parse()
617 config_set_string(config, section, trim(line_ptr), trim(split + 1), true); in config_parse()