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

/freebsd-10.1-release/contrib/subversion/subversion/libsvn_subr/
H A Dpath.c1255 const char *last_dot, *last_slash;
1264 last_dot = strrchr(path, '.');
1265 if (last_dot && (last_dot + 1 != '\0'))
1273 if ((last_slash && (last_dot > (last_slash + 1)))
1274 || ((! last_slash) && (last_dot > path)))
1278 (last_dot - path + 1) * sizeof(*path));
1280 *path_ext = apr_pstrdup(pool, last_dot + 1);
1249 const char *last_dot, *last_slash; local

Completed in 91 milliseconds