Junio C Hamano <gitster@xxxxxxxxx> writes: > Michael Haggerty <mhagger@xxxxxxxxxxxx> writes: > >> while (*path) { >> - const char *slash; >> struct cache_tree_sub *sub; >> + const char *slash = strchr(path, '/'); >> >> - slash = strchr(path, '/'); >> if (!slash) >> slash = path + strlen(path); > > Isn't the above a strchrnul()? Yes. I realized that previously, but since it's a GNU extension rather than part of the C standards, I discarded that idea. Calling git grep strchrnul shows, however, that it _is_ used plentifully already. That would, indeed, favor the current proposal but with strchnul. Still worth thinking about whether there is no better name than slash for something that indicated the end of the current path name segment. -- David Kastrup -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html