view toys/other/whoami.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
line wrap: on
line source

/* whoami.c - Print effective user name
 *
 * Copyright 2012 Georgi Chorbadzhiyski <georgi@unixsol.org>

USE_WHOAMI(NEWTOY(whoami, NULL, TOYFLAG_USR|TOYFLAG_BIN))

config WHOAMI
  bool "whoami"
  default y
  help
    usage: whoami

    Print effective user name.
*/

#include "toys.h"

void whoami_main(void)
{
  struct passwd *pw = getpwuid(geteuid());

  if (!pw) {
    perror("getpwuid");
    toys.exitval = 1;
    return;
  }

  xputs(pw->pw_name);
}