/** * 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 Read input from file \ 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