view toys/other/readlink.c @ 694:786841fdb1e0

Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style. The actual code should be the same afterward, this is just cosmetic refactoring.
author Rob Landley <rob@landley.net>
date Tue, 13 Nov 2012 17:14:08 -0600
parents 6df4ccc0acbe
children 977e19296b3f
line wrap: on
line source

/* readlink.c - Return string representation of a symbolic link.
 *
 * Copyright 2007 Rob Landley <rob@landley.net>

USE_READLINK(NEWTOY(readlink, "<1f", TOYFLAG_BIN))

config READLINK
  bool "readlink"
  default n
  help
    usage: readlink

    Show what a symbolic link points to.

config READLINK_F
  bool "readlink -f"
  default n
  depends on READLINK
  help
    usage: readlink [-f]

    -f	Show full cannonical path, with no symlinks in it.  Returns
    	nonzero if nothing could currently exist at this location.
*/

#include "toys.h"

void readlink_main(void)
{
  char *s;

  // Calculating full cannonical path?

  if (CFG_READLINK_F && toys.optflags) s = xrealpath(*toys.optargs);
  else s = xreadlink(*toys.optargs);

  if (s) {
    xputs(s);
    if (CFG_TOYBOX_FREE) free(s);
  } else toys.exitval = 1;
}