/* * phytotron - outil de gestion des datas */ #include #include #include int verbosity; /* --------------------------------------------------------------- */ void help(int k) { puts("options : "); puts("\t-K\tset the K parameter."); puts("\t-v\tincrease verbosity."); exit(0); } /* --------------------------------------------------------------- */ int main(int argc, char *argv[]) { int opt, foo; int K = 0; // char ligne[100]; while ((opt = getopt(argc, argv, "hKv")) != -1) { switch (opt) { case 'h': help(0); break; case 'K': K = atoi(optarg); break; case 'v': verbosity++; break; default: break; } } fprintf(stderr, "*** storage tool %s %s\n", __DATE__, __TIME__); return 0; } /* --------------------------------------------------------------- */