386BSD 0.1 development
[unix-history] / usr / src / usr.bin / ar / ar.c
index 5d6fdac..cb6c583 100644 (file)
@@ -5,7 +5,33 @@
  * This code is derived from software contributed to Berkeley by
  * Hugh Smith at The University of Guelph.
  *
  * This code is derived from software contributed to Berkeley by
  * Hugh Smith at The University of Guelph.
  *
- * %sccs.include.redist.c%
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ *    must display the following acknowledgement:
+ *     This product includes software developed by the University of
+ *     California, Berkeley and its contributors.
+ * 4. Neither the name of the University nor the names of its contributors
+ *    may be used to endorse or promote products derived from this software
+ *    without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
  */
 
 #ifndef lint
  */
 
 #ifndef lint
@@ -15,7 +41,7 @@ char copyright[] =
 #endif /* not lint */
 
 #ifndef lint
 #endif /* not lint */
 
 #ifndef lint
-static char sccsid[] = "@(#)ar.c       5.7 (Berkeley) %G%";
+static char sccsid[] = "@(#)ar.c       5.11 (Berkeley) 3/21/91";
 #endif /* not lint */
 
 #include <sys/param.h>
 #endif /* not lint */
 
 #include <sys/param.h>
@@ -23,12 +49,16 @@ static char sccsid[] = "@(#)ar.c    5.7 (Berkeley) %G%";
 #include <dirent.h>
 #include <stdio.h>
 #include <ar.h>
 #include <dirent.h>
 #include <stdio.h>
 #include <ar.h>
+#include <string.h>
+#include <stdlib.h>
 #include <paths.h>
 #include "archive.h"
 #include <paths.h>
 #include "archive.h"
+#include "extern.h"
 
 CHDR chdr;
 u_int options;
 
 CHDR chdr;
 u_int options;
-char *archive, *envtmp, *posname;
+char *archive, *envtmp, *posarg, *posname;
+static void badoptions(), usage();
 
 /*
  * main --
 
 /*
  * main --
@@ -41,11 +71,10 @@ main(argc, argv)
        char **argv;
 {
        extern int optind;
        char **argv;
 {
        extern int optind;
-       int c, rval;
+       int c;
        char *p;
        int (*fcall)(), append(), contents(), delete(), extract(),
            move(), print(), replace();
        char *p;
        int (*fcall)(), append(), contents(), delete(), extract(),
            move(), print(), replace();
-       char *rname();
 
        if (argc < 3)
                usage();
 
        if (argc < 3)
                usage();
@@ -64,7 +93,7 @@ main(argc, argv)
                argv[1] = p;
        }
 
                argv[1] = p;
        }
 
-       while ((c = getopt(argc, argv, "abcdilmopqrstuvx")) != EOF) {
+       while ((c = getopt(argc, argv, "abcdilmopqrTtuvx")) != EOF) {
                switch(c) {
                case 'a':
                        options |= AR_A;
                switch(c) {
                case 'a':
                        options |= AR_A;
@@ -102,8 +131,8 @@ main(argc, argv)
                        options |= AR_R;
                        fcall = replace;
                        break;
                        options |= AR_R;
                        fcall = replace;
                        break;
-               case 's':
-                       options |= AR_S;
+               case 'T':
+                       options |= AR_TR;
                        break;
                case 't':
                        options |= AR_T;
                        break;
                case 't':
                        options |= AR_T;
@@ -141,33 +170,33 @@ main(argc, argv)
        }
        /* -ab require a position argument. */
        if (options & (AR_A|AR_B)) {
        }
        /* -ab require a position argument. */
        if (options & (AR_A|AR_B)) {
-               if (!(posname = *argv++)) {
+               if (!(posarg = *argv++)) {
                        (void)fprintf(stderr,
                            "ar: no position operand specified.\n");
                        usage();
                }
                        (void)fprintf(stderr,
                            "ar: no position operand specified.\n");
                        usage();
                }
-               posname = rname(posname);
+               posname = rname(posarg);
        }
        }
-       /* -d only valid with -sv. */
-       if (options & AR_D && options & ~(AR_D|AR_S|AR_V))
+       /* -d only valid with -Tv. */
+       if (options & AR_D && options & ~(AR_D|AR_TR|AR_V))
                badoptions("-d");
                badoptions("-d");
-       /* -m only valid with -abisv. */
-       if (options & AR_M && options & ~(AR_A|AR_B|AR_M|AR_S|AR_V))
+       /* -m only valid with -abiTv. */
+       if (options & AR_M && options & ~(AR_A|AR_B|AR_M|AR_TR|AR_V))
                badoptions("-m");
                badoptions("-m");
-       /* -p only valid with -sv. */
-       if (options & AR_P && options & ~(AR_P|AR_S|AR_V))
+       /* -p only valid with -Tv. */
+       if (options & AR_P && options & ~(AR_P|AR_TR|AR_V))
                badoptions("-p");
                badoptions("-p");
-       /* -q only valid with -csv. */
-       if (options & AR_Q && options & ~(AR_C|AR_Q|AR_S|AR_V))
+       /* -q only valid with -cTv. */
+       if (options & AR_Q && options & ~(AR_C|AR_Q|AR_TR|AR_V))
                badoptions("-q");
                badoptions("-q");
-       /* -r only valid with -abcusv. */
-       if (options & AR_R && options & ~(AR_A|AR_B|AR_C|AR_R|AR_U|AR_S|AR_V))
+       /* -r only valid with -abcuTv. */
+       if (options & AR_R && options & ~(AR_A|AR_B|AR_C|AR_R|AR_U|AR_TR|AR_V))
                badoptions("-r");
                badoptions("-r");
-       /* -t only valid with -sv. */
-       if (options & AR_T && options & ~(AR_T|AR_S|AR_V))
+       /* -t only valid with -Tv. */
+       if (options & AR_T && options & ~(AR_T|AR_TR|AR_V))
                badoptions("-t");
                badoptions("-t");
-       /* -x only valid with -ousv. */
-       if (options & AR_X && options & ~(AR_O|AR_U|AR_S|AR_V|AR_X))
+       /* -x only valid with -ouTv. */
+       if (options & AR_X && options & ~(AR_O|AR_U|AR_TR|AR_V|AR_X))
                badoptions("-x");
 
        if (!(archive = *argv++)) {
                badoptions("-x");
 
        if (!(archive = *argv++)) {
@@ -181,10 +210,10 @@ main(argc, argv)
                usage();
        }
 
                usage();
        }
 
-       rval = (*fcall)(argv);
-       exit(rval);
+       exit((*fcall)(argv));
 }
 
 }
 
+static void
 badoptions(arg)
        char *arg;
 {
 badoptions(arg)
        char *arg;
 {
@@ -193,16 +222,17 @@ badoptions(arg)
        usage();
 }
 
        usage();
 }
 
+static void
 usage()
 {
 usage()
 {
-       (void)fprintf(stderr, "usage:  ar -d [-sv] archive file ...\n");
-       (void)fprintf(stderr, "\tar -m [-sv] archive file ...\n");
-       (void)fprintf(stderr, "\tar -m [-abisv] position archive file ...\n");
-       (void)fprintf(stderr, "\tar -p [-sv] archive [file ...]\n");
-       (void)fprintf(stderr, "\tar -q [-csv] archive file ...\n");
-       (void)fprintf(stderr, "\tar -r [-cusv] archive file ...\n");
-       (void)fprintf(stderr, "\tar -r [-abciusv] position archive file ...\n");
-       (void)fprintf(stderr, "\tar -t [-sv] archive [file ...]\n");
-       (void)fprintf(stderr, "\tar -x [-ousv] archive [file ...]\n");
+       (void)fprintf(stderr, "usage:  ar -d [-Tv] archive file ...\n");
+       (void)fprintf(stderr, "\tar -m [-Tv] archive file ...\n");
+       (void)fprintf(stderr, "\tar -m [-abiTv] position archive file ...\n");
+       (void)fprintf(stderr, "\tar -p [-Tv] archive [file ...]\n");
+       (void)fprintf(stderr, "\tar -q [-cTv] archive file ...\n");
+       (void)fprintf(stderr, "\tar -r [-cuTv] archive file ...\n");
+       (void)fprintf(stderr, "\tar -r [-abciuTv] position archive file ...\n");
+       (void)fprintf(stderr, "\tar -t [-Tv] archive [file ...]\n");
+       (void)fprintf(stderr, "\tar -x [-ouTv] archive [file ...]\n");
        exit(1);
 }      
        exit(1);
 }