aboutsummaryrefslogtreecommitdiff
path: root/toys/dirname.c
blob: 8810bec527d2104ef57f0ce11a08942a6c877e73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* vi: set sw=4 ts=4: */
/* dirname.c - print directory portion of path, or "." if none.
 *
 * See http://www.opengroup.org/onlinepubs/009695399/utilities/dirname.html
 */

#include "toys.h"
#include <libgen.h>

void dirname_main(void)
{
	puts(dirname(*toys.optargs));
}