1 /* $OpenBSD: dirname.c,v 1.12 2009/10/27 23:59:37 deraadt Exp $ */ 2 3 /* 4 * Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> 5 * 6 * Permission to use, copy, modify, and distribute this software for any 7 * purpose with or without fee is hereby granted, provided that the above 8 * copyright notice and this permission notice appear in all copies. 9 * 10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 17 */ 18 19 #include <err.h> 20 #include <libgen.h> 21 #include <locale.h> 22 #include <stdio.h> 23 #include <stdlib.h> 24 #include <unistd.h> 25 26 void usage(void); 27 28 int 29 main(int argc, char *argv[]) 30 { 31 int ch; 32 char *dir; 33 34 setlocale(LC_ALL, ""); 35 36 while ((ch = getopt(argc, argv, "")) != -1) { 37 switch (ch) { 38 default: 39 usage(); 40 } 41 } 42 argc -= optind; 43 argv += optind; 44 45 if (argc != 1) 46 usage(); 47 48 if ((dir = dirname(argv[0])) == NULL) 49 err(1, "%s", argv[0]); 50 puts(dir); 51 exit(0); 52 } 53 54 extern char *__progname; 55 56 void 57 usage(void) 58 { 59 (void)fprintf(stderr, "Usage: %s pathname\n", __progname); 60 exit(1); 61 } 62