ldaphotos/sources/include/main.h

28 lines
618 B
C
Raw Normal View History

/**
* Main.h: contains definitions for ldaphotos.c
*/
#ifndef LDAPHOTOS
#define LDAPHOTOS
#define VERSION "v0.0"
#define TITLE "LDAP Photo Album, by Catluck Kettlemerry"
#define PROGNAME "ldaphotos"
#define USAGE0 "Usage:"
#define USAGE1 "[OPTION...]"
#define OPTIONS "Options: \
\t-v run verbosely \
\t-h show help and exit \
\t-t provide terse output \
\t-f <path> Read input from file <path> \
t-p Print the effects of the given options for this invocation"
void print_help(void){
printf("%s %s\n", TITLE, VERSION);
printf("%s %s %s\n", USAGE0, PROGNAME, USAGE1);
printf("%s\n",
OPTIONS);
}
#endif