https://github.com/git/git
Raw File
Tip revision: 8a90438506d3b7c8ef8bd802b7ed10c1f12da1d0 authored by Junio C Hamano on 22 October 2010, 00:14:32 UTC
Git 1.7.3.2
Tip revision: 8a90438
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