aboutsummaryrefslogtreecommitdiff
path: root/toys/basename.c
blob: da843b86f5d78878ecc877878f02d2522a69de85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* vi: set sw=4 ts=4: */
/* basename.c - print non-directory portion of path
 *
 * See http://www.opengroup.org/onlinepubs/009695399/utilities/basename.html
 */

#include "toys.h"

int basename_main(void)
{
	char *name = basename(*toys.optargs);
	char *suffix = toys.optargs[1];
	if (suffix) {
		char *end = name+strlen(name)-strlen(suffix);
		if (end>name && !strcmp(end,suffix)) *end=0;
	}
	puts(name);
	return 0;
}