Correzione alle scritte di help di getparam, e aggiunto banale programmino
[gapil.git] / sources / getparam.c
index 5619c1f3a9aac24a8f5a2ea375dc3b3e84533ee4..6410bb572e60fc27e63c9ff52b2a82b36f7fa2cd 100644 (file)
@@ -19,7 +19,7 @@
 /****************************************************************
  *
  * Program getparam.c: 
- * Program to test function fopen
+ * Program to read system parameters
  *
  * Author: Simone Piccardi
  * Jan. 2002
@@ -110,10 +110,11 @@ int defined[]={
     0,
 #endif
 #ifdef  SSIZE_MAX
-    1
+    1,
 #else
 #define SSIZE_MAX             -1
     0
+#endif
 };
 
 
@@ -169,7 +170,6 @@ int main(int argc, char *argv[])
      *               Main code beginning
      * 
      * ***********************************************************/
-    /* There must be 2 remaing parameters */
     if ( (argc-optind) != 1 )  {
        printf("From %d arguments, removed %d options\n", argc, optind);
        usage();
@@ -184,9 +184,9 @@ int main(int argc, char *argv[])
  * routine to print usage info and exit
  */
 void usage(void) {
-    printf("Program testfopen : test fopen for a file  \n");
+    printf("Program getparam : test fopen for a file  \n");
     printf("Usage:\n");
-    printf("  testfopen [-h] file mode \n");
+    printf("  getparam [-h] parameter \n");
     printf("  -h          print this help\n");
     
     exit(1);