Run Nindent on com32/lib/getopt.c
authorH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:23 +0000 (15:10 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:23 +0000 (15:10 -0700)
Automatically reformat com32/lib/getopt.c using Nindent.

Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
com32/lib/getopt.c

index 49b007a..5e9b7c6 100644 (file)
@@ -13,60 +13,60 @@ int optind = 1;
 int opterr, optopt;
 static const char *__optptr;
 
-int getopt(int argc, char * const *argv, const char *optstring)
+int getopt(int argc, char *const *argv, const char *optstring)
 {
-  const char *carg = argv[optind];
-  const char *osptr;
-  int opt;
+    const char *carg = argv[optind];
+    const char *osptr;
+    int opt;
 
-  /* We don't actually need argc */
-  (void)argc;
+    /* We don't actually need argc */
+    (void)argc;
 
-  /* First, eliminate all non-option cases */
+    /* First, eliminate all non-option cases */
 
-  if ( !carg || carg[0] != '-' || !carg[1] ) {
-    return -1;
-  }
+    if (!carg || carg[0] != '-' || !carg[1]) {
+       return -1;
+    }
 
-  if ( carg[1] == '-' && !carg[2] ) {
-    optind++;
-    return -1;
-  }
+    if (carg[1] == '-' && !carg[2]) {
+       optind++;
+       return -1;
+    }
 
-  if ( (uintptr_t)(__optptr-carg) > (uintptr_t)strlen(carg) )
-    __optptr = carg+1; /* Someone frobbed optind, change to new opt. */
+    if ((uintptr_t) (__optptr - carg) > (uintptr_t) strlen(carg))
+       __optptr = carg + 1;    /* Someone frobbed optind, change to new opt. */
 
-  opt = *__optptr++;
+    opt = *__optptr++;
 
-  if ( opt != ':' && (osptr = strchr(optstring, opt)) ) {
-    if ( osptr[1] == ':' ) {
-      if ( *__optptr ) {
-       /* Argument-taking option with attached argument */
-       optarg = (char *)__optptr;
-       optind++;
-      } else {
-       /* Argument-taking option with non-attached argument */
-       if ( argv[optind+1] ) {
-         optarg = (char *)argv[optind+1];
-         optind += 2;
+    if (opt != ':' && (osptr = strchr(optstring, opt))) {
+       if (osptr[1] == ':') {
+           if (*__optptr) {
+               /* Argument-taking option with attached argument */
+               optarg = (char *)__optptr;
+               optind++;
+           } else {
+               /* Argument-taking option with non-attached argument */
+               if (argv[optind + 1]) {
+                   optarg = (char *)argv[optind + 1];
+                   optind += 2;
+               } else {
+                   /* Missing argument */
+                   return (optstring[0] == ':') ? ':' : '?';
+               }
+           }
+           return opt;
        } else {
-         /* Missing argument */
-         return (optstring[0] == ':') ? ':' : '?';
+           /* Non-argument-taking option */
+           /* __optptr will remember the exact position to resume at */
+           if (!*__optptr)
+               optind++;
+           return opt;
        }
-      }
-      return opt;
     } else {
-      /* Non-argument-taking option */
-      /* __optptr will remember the exact position to resume at */
-      if ( ! *__optptr )
-       optind++;
-      return opt;
+       /* Unknown option */
+       optopt = opt;
+       if (!*__optptr)
+           optind++;
+       return '?';
     }
-  } else {
-    /* Unknown option */
-    optopt = opt;
-    if ( ! *__optptr )
-      optind++;
-    return '?';
-  }
 }