sbase/dirname.c

28 lines
329 B
C
Raw Normal View History

2011-05-24 20:39:20 +00:00
/* See LICENSE file for copyright and license details. */
#include <libgen.h>
#include <stdio.h>
2011-05-24 20:39:20 +00:00
#include "util.h"
2013-06-14 18:20:47 +00:00
static void
usage(void)
{
2015-02-01 19:52:28 +00:00
eprintf("usage: %s path\n", argv0);
2013-06-14 18:20:47 +00:00
}
2011-05-24 20:39:20 +00:00
int
main(int argc, char *argv[])
{
2013-06-14 18:20:47 +00:00
ARGBEGIN {
default:
usage();
} ARGEND;
if (argc < 1)
2013-06-14 18:20:47 +00:00
usage();
2011-05-24 20:39:20 +00:00
puts(dirname(argv[0]));
2013-06-14 18:20:47 +00:00
2014-10-02 22:46:04 +00:00
return 0;
2011-05-24 20:39:20 +00:00
}