Lines Matching refs:delim
356 char *delim;
373 delim = strrchr(file, '/');
374 if (delim == (char *)NULL) {
379 /* truncate file at pathname delim to do pathconf */
380 savedelim = *delim;
381 *delim = '\0';
385 * ............. ^ delim
387 if (strlen(delim + 1) > pathconf(file, _PC_NAME_MAX)) {
388 fatal("Name too long: %s\n", delim + 1);
390 *delim = savedelim;