view toys/readlink.c @ 169:56034b162074

Implement dmesg.
author Rob Landley <rob@landley.net>
date Tue, 20 Nov 2007 01:06:29 -0600
parents 0dfead29c893
children 25447caf1b4b
line wrap: on
line source

/* vi: set sw=4 ts=4: */
/*
 * readlink.c - Return string representation of a symbolic link.
 */
// Note: Hardware in LINK_MAX as 127 since it was removed from glibc.

#include "toys.h"

int readlink_main(void)
{
	char *s = xreadlink(*toys.optargs);

	if (s) {
		xputs(s);
		if (CFG_TOYBOX_FREE) free(s);
		return 0;
	}

	return 1;
}