about summary refs log tree commit diff
path: root/urt
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2020-06-07 18:10:25 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2020-06-07 18:10:25 +0000
commitcc7896aaf0ee682aa890c33163397cd4c073215f (patch)
tree9faada2aa343bd9ba12c01ef1f1da30d0620f434 /urt
parent57630edefed045e4ba422c09bf8d73d637b0cb70 (diff)
downloadnetpbm-mirror-cc7896aaf0ee682aa890c33163397cd4c073215f.tar.gz
netpbm-mirror-cc7896aaf0ee682aa890c33163397cd4c073215f.tar.xz
netpbm-mirror-cc7896aaf0ee682aa890c33163397cd4c073215f.zip
whitespace
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@3834 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'urt')
-rw-r--r--urt/scanargs.c86
1 files changed, 43 insertions, 43 deletions
diff --git a/urt/scanargs.c b/urt/scanargs.c
index f3af3342..549c9e4e 100644
--- a/urt/scanargs.c
+++ b/urt/scanargs.c
@@ -1,22 +1,22 @@
-/* 
+/*
  * $Id: scanargs.c,v 3.0.1.3 1992/02/27 21:18:14 spencer Exp $
  * 		Version 7 compatible
  * 	Argument scanner, scans argv style argument list.
- * 
+ *
  * 	Some stuff is a kludge because sscanf screws up
- * 
- * 	Gary Newman - 10/4/1979 - Ampex Corp. 
- * 
+ *
+ * 	Gary Newman - 10/4/1979 - Ampex Corp.
+ *
  * 	Modified by Spencer W. Thomas, Univ. of Utah, 5/81 to
  * 	add args introduced by 	a flag, add qscanargs call,
  * 	allow empty flags.
- * 
+ *
  * 	If you make improvements we'd like to get them too.
  * 	Jay Lepreau	lepreau@utah-20, decvax!harpo!utah-cs!lepreau
- * 	Spencer Thomas	thomas@utah-20, decvax!harpo!utah-cs!thomas 
- * 
+ * 	Spencer Thomas	thomas@utah-20, decvax!harpo!utah-cs!thomas
+ *
  *	(I know the code is ugly, but it just grew, you see ...)
- * 
+ *
  * Modified by:	Spencer W. Thomas
  * 	Date:	Feb 25 1983
  * 1. Fixed scanning of optional args.  Now args introduced by a flag
@@ -26,11 +26,11 @@
  *    earlier in the format string.  This implies that flags may not
  *    be conditional upon other flags, and a message will be generated
  *    if this is attempted.
- * 
+ *
  * 2. Usage message can be formatted by inserting newlines, tabs and
  *    spaces into the format string.  This is especially useful for
  *    long argument lists.
- * 
+ *
  * 3. Added n/N types for "numeric" args.  These args are scanned
  *    using the C language conventions - a number starting 0x is
  *    hexadecimal, a number starting with 0 is octal, otherwise it is
@@ -49,7 +49,7 @@
 #include "rle_config.h"
 #include "rle.h"
 
-/* 
+/*
  * An explicit assumption is made in this code that all pointers look
  * alike, except possible char * pointers.
  */
@@ -59,7 +59,7 @@ typedef int *ptr;
 #define NO 0
 #define ERROR(msg)  {fprintf(stderr, "%s\n", msg); goto error; }
 
-/* 
+/*
  * Storage allocation macros
  */
 #define NEW( type, cnt )	(type *) malloc( (cnt) * sizeof( type ) )
@@ -71,7 +71,7 @@ static int	_do_scanargs( int argc, char **argv, CONST_DECL char *format,
 			      va_list argl );
 void		scan_usage( char **, CONST_DECL char * );
 
-/* 
+/*
  * Argument list is (argc, argv, format, ... )
  */
 int
@@ -84,8 +84,8 @@ scanargs ( int argc, char **argv, CONST_DECL char *format, ... )
     va_end( argl );
     return retval;
 }
-    
-/* 
+
+/*
  * This routine is necessary because of a pyramid compiler botch that
  * uses parameter registers in a varargs routine.  The extra
  * subroutine call isolates the args on the register stack so they
@@ -168,7 +168,7 @@ va_list argl;
     no_usage = *(format + strlen( format ) - 1) == '&';
 
     cp = format;
-    /* 
+    /*
      * Skip program name
      */
     while ( *cp != ' ' && *cp != '\t' && *cp != '\n' && *cp != '\0' )
@@ -286,7 +286,7 @@ reswitch:				/* after finding '*' or ',' */
 			if (required)
 			    ERROR ("flag argument missing");
 			cp = ncp;
-			/* 
+			/*
 			 * If none of these flags were found, skip any
 			 * optional arguments (in the varargs list, too).
 			 */
@@ -301,7 +301,7 @@ reswitch:				/* after finding '*' or ',' */
 					cp++;
 					(void)va_arg( argl, int * );
 				    }
-				    /* 
+				    /*
 				     * Assume that char * might be a
 				     * different size, but that all
 				     * other pointers are same size.
@@ -359,15 +359,15 @@ reswitch:				/* after finding '*' or ',' */
 				    continue;
 			    else if ( typchr != 's' )
 				continue;	/* not number, keep looking */
-			    
-			    /* 
+
+			    /*
 			     * Otherwise usable argument may already
 			     * be used.  (Must check this after
 			     * checking for flag, though.)
 			     */
 			    if (arg_used[cnt]) continue;
 
-			    /* 
+			    /*
 			     * If it's a comma-and-or-space-separated
 			     * list then count how many, and separate
 			     * the list into an array of strings.
@@ -384,9 +384,9 @@ reswitch:				/* after finding '*' or ',' */
 				strcpy( s, argp );
 				argp = s;
 
-				/* 
+				/*
 				 * On pass 0, just count them.  On
-				 * pass 1, null terminate each string 
+				 * pass 1, null terminate each string
 				 */
 				for ( pass = 0; pass <= 1; pass++ )
 				{
@@ -401,7 +401,7 @@ reswitch:				/* after finding '*' or ',' */
 					    *s = '\0';
 
 					list_cnt++;	/* count separators */
-					/* 
+					/*
 					 * Two commas in a row give a null
 					 * string, but two spaces
 					 * don't.  Also skip spaces
@@ -420,7 +420,7 @@ reswitch:				/* after finding '*' or ',' */
 			    }
 			    else if ( list_of )
 				list_cnt++;   /* getting them one at a time */
-			    /* 
+			    /*
 			     * If it's either type of list, then alloc
 			     * storage space for the returned values
 			     * (except that comma-separated string
@@ -507,7 +507,7 @@ reswitch:				/* after finding '*' or ',' */
 			    {
 				nopt = 0;
 				do {
-				    /* 
+				    /*
 				     * Need to update aptr if parsing
 				     * a comma list
 				     */
@@ -536,7 +536,7 @@ reswitch:				/* after finding '*' or ',' */
 						break;
 					}
 				    }
-				    /* 
+				    /*
 				     * Do conversion for n and N types
 				     */
 				    tmpflg = typchr;
@@ -586,19 +586,19 @@ reswitch:				/* after finding '*' or ',' */
 			if (required)
 			    switch (typchr)
 			    {
-				case 'x': 
-				case 'X': 
+				case 'x':
+				case 'X':
 				    ERROR ("missing hexadecimal argument");
-				case 's': 
+				case 's':
 				    ERROR ("missing string argument");
-				case 'o': 
-				case 'O': 
+				case 'o':
+				case 'O':
 				    ERROR ("missing octal argument");
-				case 'd': 
-				case 'D': 
+				case 'd':
+				case 'D':
 				    ERROR ("missing decimal argument");
-				case 'f': 
-				case 'F': 
+				case 'f':
+				case 'F':
 				    ERROR ("missing floating argument");
 				case 'n':
 				case 'N':
@@ -668,7 +668,7 @@ reswitch:				/* after finding '*' or ',' */
     free(arg_used);
     return 1;
 
-error: 
+error:
     if ( !no_usage )
 	scan_usage( argv, format );
     free(arg_used);
@@ -687,7 +687,7 @@ CONST_DECL char * format;
     {
 	if ( *cp == '%' )
 	{
-	    /* 
+	    /*
 	     * This is bogus, but until everyone can agree on a name
 	     * for (rindex/strrchr) ....
 	     */
@@ -763,9 +763,9 @@ int 	recurse;
 		format = cp;
 		break;
 
-	    case '!': 
+	    case '!':
 		required = YES;
-	    case '%': 
+	    case '%':
 reswitch:
 		switch (*++cp)
 		{
@@ -833,7 +833,7 @@ reswitch:
 			if (!required)
 			    putc (']', stderr);
 			break;
-		    default: 
+		    default:
 			break;
 		}
 		required = NO;
@@ -856,7 +856,7 @@ reswitch:
     return (cp);
 }
 
-/* 
+/*
  * isnum - determine whether a string MIGHT represent a number.
  * typchr indicates the type of argument we are looking for, and
  * determines the legal character set.  If comma_list is YES, then