sbase/dirname.c

30 lines
373 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>
#include <stdlib.h>
#include <unistd.h>
2011-05-24 20:39:20 +00:00
#include "util.h"
2013-06-14 18:20:47 +00:00
static void
usage(void)
{
2014-11-13 14:26:38 +00:00
eprintf("usage: %s pathname\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
}