Coded by Larry Cow (migeot_o@epita.fr)

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2344 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Phil Greenway 2003-01-01 13:12:11 +00:00
parent a92481e9ef
commit 49faf11397
1 changed files with 57 additions and 0 deletions

57
src/apps/bin/logname.c Normal file
View File

@ -0,0 +1,57 @@
/*
* OBOS Command line apps
* logname.c
* Larry Cow <larrycow@free.fr>
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#define DEFAULT_USER "baron"
#define HELP_TIP "Try '%s --help' for more information.\n"
#define HELP_MESSAGE "Usage: /bin/logname [OPTION]...
Print the name of the current
--help\t display this help and exit
--version\t output version information and exit
Reports bugs to <larrycow@free.fr>."
#define VERSION_MESSAGE "logname (OBOS) 1.0
Written by Larry Cow
Coded by Larry Cow 2002
Released under the MIT license with OpenBeOS."
void dispatch_args(char* av0, char* av1)
{
if (!strcmp(av1, "--help"))
{
puts(HELP_MESSAGE);
return;
}
if (!strcmp(av1, "--version"))
{
puts(VERSION_MESSAGE);
return;
}
printf(HELP_TIP, av0);
}
int main(int argc, char* argv[])
{
if (argc > 1)
dispatch_args(argv[0], argv[1]);
else
{
char* user = getenv("USER");
if (user == NULL)
puts(DEFAULT_USER);
else
puts(user);
}
return 0;
}