Searched refs:tok_begin (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/crypto/heimdal/lib/krb5/
H A Dexpand_path.c406 char *tok_begin, *tok_end, *append; local
419 tok_begin = strstr(path_left, "%{");
421 if (tok_begin && tok_begin != path_left) {
423 append = malloc((tok_begin - path_left) + 1);
425 memcpy(append, path_left, tok_begin - path_left);
426 append[tok_begin - path_left] = '\0';
428 path_left = tok_begin;
430 } else if (tok_begin) {
432 tok_end = strchr(tok_begin, '}');
[all...]

Completed in 100 milliseconds