Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/common/osi/
Dconfig.c620 char *line_ptr = trim(line); in config_parse() local
624 if (*line_ptr == '\0' || *line_ptr == '#') { in config_parse()
628 if (*line_ptr == '[') { in config_parse()
629 size_t len = strlen(line_ptr); in config_parse()
630 if (line_ptr[len - 1] != ']') { in config_parse()
634 strncpy(section, line_ptr + 1, len - 2); in config_parse()
637 char *split = strchr(line_ptr, '='); in config_parse()
643 config_set_string(config, section, trim(line_ptr), trim(split + 1), true); in config_parse()