https://github.com/git/git
Raw File
Tip revision: 441c4a40173fe1ee8a5c0094e587dfc47e2a6460 authored by Junio C Hamano on 04 September 2015, 17:25:47 UTC
Git 2.2.3
Tip revision: 441c4a4
basename.c
#include "../git-compat-util.h"

/* Adapted from libiberty's basename.c.  */
char *gitbasename (char *path)
{
	const char *base;
	/* Skip over the disk name in MSDOS pathnames. */
	if (has_dos_drive_prefix(path))
		path += 2;
	for (base = path; *path; path++) {
		if (is_dir_sep(*path))
			base = path + 1;
	}
	return (char *)base;
}
back to top