Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3375 → Rev 3376

/trunk/uspace/app/bdsh/cmds/modules/help/help.c
31,6 → 31,8
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
 
#include "config.h"
#include "entry.h"
#include "help.h"
#include "cmds.h"
37,6 → 39,7
#include "modules.h"
#include "builtins.h"
#include "errors.h"
#include "util.h"
 
static char *cmdname = "help";
extern const char *progname;
95,7 → 98,7
int argc;
int level = HELP_SHORT;
 
for (argc = 0; argv[argc] != NULL; argc ++);
argc = cli_count_args(argv);
 
if (argc > 3) {
printf("\nToo many arguments to `%s', try:\n", cmdname);