blob: 8810bec527d2104ef57f0ce11a08942a6c877e73 [file] [log] [blame]
/* 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));
}