FOSSology  4.4.0
Open Source License Compliance by Open Source Software
usage.c
Go to the documentation of this file.
1 /*
2  SPDX-FileCopyrightText: © 2013 Hewlett-Packard Development Company, L.P.
3 
4  SPDX-License-Identifier: GPL-2.0-only
5 */
11 #include "demomod.h"
12 
13 FUNCTION void Usage(char *Name)
14 {
15  printf("Usage: %s [options] file1 file2 ...\n", Name);
16  printf(" -i :: Initialize the database, then exit.\n");
17  printf(" -v :: verbose (turns on debugging output)\n");
18  printf(" -V :: print the version info, then exit.\n");
19  printf(" -c SYSCONFDIR :: System Config directory (used by testing system). \n");
20 } /* Usage() */
21 
22 
FUNCTION void Usage(char *Name)
Definition: usage.c:13