Home | History | Annotate | Line # | Download | only in sort
init.c revision 1.12
      1  1.12  jdolecek /*	$NetBSD: init.c,v 1.12 2004/02/15 14:22:55 jdolecek Exp $	*/
      2   1.9  jdolecek 
      3   1.9  jdolecek /*-
      4   1.9  jdolecek  * Copyright (c) 2000-2003 The NetBSD Foundation, Inc.
      5   1.9  jdolecek  * All rights reserved.
      6   1.9  jdolecek  *
      7   1.9  jdolecek  * This code is derived from software contributed to The NetBSD Foundation
      8   1.9  jdolecek  * by Ben Harris and Jaromir Dolecek.
      9   1.9  jdolecek  *
     10   1.9  jdolecek  * Redistribution and use in source and binary forms, with or without
     11   1.9  jdolecek  * modification, are permitted provided that the following conditions
     12   1.9  jdolecek  * are met:
     13   1.9  jdolecek  * 1. Redistributions of source code must retain the above copyright
     14   1.9  jdolecek  *    notice, this list of conditions and the following disclaimer.
     15   1.9  jdolecek  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.9  jdolecek  *    notice, this list of conditions and the following disclaimer in the
     17   1.9  jdolecek  *    documentation and/or other materials provided with the distribution.
     18   1.9  jdolecek  * 3. All advertising materials mentioning features or use of this software
     19   1.9  jdolecek  *    must display the following acknowledgement:
     20   1.9  jdolecek  *        This product includes software developed by the NetBSD
     21   1.9  jdolecek  *        Foundation, Inc. and its contributors.
     22   1.9  jdolecek  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23   1.9  jdolecek  *    contributors may be used to endorse or promote products derived
     24   1.9  jdolecek  *    from this software without specific prior written permission.
     25   1.9  jdolecek  *
     26   1.9  jdolecek  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27   1.9  jdolecek  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28   1.9  jdolecek  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29   1.9  jdolecek  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30   1.9  jdolecek  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31   1.9  jdolecek  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32   1.9  jdolecek  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33   1.9  jdolecek  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34   1.9  jdolecek  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35   1.9  jdolecek  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36   1.9  jdolecek  * POSSIBILITY OF SUCH DAMAGE.
     37   1.9  jdolecek  */
     38   1.2     bjh21 
     39   1.1     bjh21 /*-
     40   1.1     bjh21  * Copyright (c) 1993
     41   1.1     bjh21  *	The Regents of the University of California.  All rights reserved.
     42   1.1     bjh21  *
     43   1.1     bjh21  * This code is derived from software contributed to Berkeley by
     44   1.1     bjh21  * Peter McIlroy.
     45   1.1     bjh21  *
     46   1.1     bjh21  * Redistribution and use in source and binary forms, with or without
     47   1.1     bjh21  * modification, are permitted provided that the following conditions
     48   1.1     bjh21  * are met:
     49   1.1     bjh21  * 1. Redistributions of source code must retain the above copyright
     50   1.1     bjh21  *    notice, this list of conditions and the following disclaimer.
     51   1.1     bjh21  * 2. Redistributions in binary form must reproduce the above copyright
     52   1.1     bjh21  *    notice, this list of conditions and the following disclaimer in the
     53   1.1     bjh21  *    documentation and/or other materials provided with the distribution.
     54   1.8       agc  * 3. Neither the name of the University nor the names of its contributors
     55   1.1     bjh21  *    may be used to endorse or promote products derived from this software
     56   1.1     bjh21  *    without specific prior written permission.
     57   1.1     bjh21  *
     58   1.1     bjh21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     59   1.1     bjh21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     60   1.1     bjh21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     61   1.1     bjh21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     62   1.1     bjh21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     63   1.1     bjh21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     64   1.1     bjh21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     65   1.1     bjh21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     66   1.1     bjh21  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     67   1.1     bjh21  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     68   1.1     bjh21  * SUCH DAMAGE.
     69   1.1     bjh21  */
     70   1.1     bjh21 
     71   1.2     bjh21 #include "sort.h"
     72   1.2     bjh21 
     73   1.1     bjh21 #ifndef lint
     74  1.12  jdolecek __RCSID("$NetBSD: init.c,v 1.12 2004/02/15 14:22:55 jdolecek Exp $");
     75   1.2     bjh21 __SCCSID("@(#)init.c	8.1 (Berkeley) 6/6/93");
     76   1.1     bjh21 #endif /* not lint */
     77   1.1     bjh21 
     78   1.1     bjh21 #include <ctype.h>
     79   1.1     bjh21 #include <string.h>
     80   1.1     bjh21 
     81   1.2     bjh21 static void insertcol __P((struct field *));
     82   1.3  jdolecek static const char *setcolumn __P((const char *, struct field *, int));
     83   1.2     bjh21 
     84   1.1     bjh21 u_char gweights[NBINS];
     85   1.1     bjh21 
     86   1.1     bjh21 /*
     87   1.4  jdolecek  * masks of ignored characters.  Alltable is 256 ones.
     88   1.4  jdolecek  */
     89   1.4  jdolecek static u_char alltable[NBINS], dtable[NBINS], itable[NBINS];
     90   1.4  jdolecek 
     91   1.4  jdolecek /*
     92  1.12  jdolecek  * parsed key options
     93  1.12  jdolecek  */
     94  1.12  jdolecek struct coldesc *clist=NULL;
     95  1.12  jdolecek int ncols = 0;
     96  1.12  jdolecek 
     97  1.12  jdolecek /*
     98   1.1     bjh21  * clist (list of columns which correspond to one or more icol or tcol)
     99   1.1     bjh21  * is in increasing order of columns.
    100   1.1     bjh21  * Fields are kept in increasing order of fields.
    101   1.1     bjh21  */
    102   1.1     bjh21 
    103   1.1     bjh21 /*
    104   1.1     bjh21  * keep clist in order--inserts a column in a sorted array
    105   1.1     bjh21  */
    106   1.1     bjh21 static void
    107   1.1     bjh21 insertcol(field)
    108   1.1     bjh21 	struct field *field;
    109   1.1     bjh21 {
    110   1.1     bjh21 	int i;
    111  1.12  jdolecek 
    112  1.12  jdolecek 	/* Make space for new item */
    113  1.12  jdolecek 	clist = realloc(clist, (ncols+1) * sizeof(*clist));
    114  1.12  jdolecek 
    115   1.1     bjh21 	for (i = 0; i < ncols; i++)
    116   1.1     bjh21 		if (field->icol.num <= clist[i].num)
    117   1.1     bjh21 			break;
    118   1.1     bjh21 	if (field->icol.num != clist[i].num) {
    119   1.1     bjh21 		memmove(clist+i+1, clist+i, sizeof(COLDESC)*(ncols-i));
    120   1.1     bjh21 		clist[i].num = field->icol.num;
    121   1.1     bjh21 		ncols++;
    122   1.1     bjh21 	}
    123   1.1     bjh21 	if (field->tcol.num && field->tcol.num != field->icol.num) {
    124   1.1     bjh21 		for (i = 0; i < ncols; i++)
    125   1.1     bjh21 			if (field->tcol.num <= clist[i].num)
    126   1.1     bjh21 				break;
    127   1.1     bjh21 		if (field->tcol.num != clist[i].num) {
    128   1.1     bjh21 			memmove(clist+i+1, clist+i,sizeof(COLDESC)*(ncols-i));
    129   1.1     bjh21 			clist[i].num = field->tcol.num;
    130   1.1     bjh21 			ncols++;
    131   1.1     bjh21 		}
    132   1.1     bjh21 	}
    133   1.1     bjh21 }
    134   1.1     bjh21 
    135   1.1     bjh21 /*
    136   1.1     bjh21  * matches fields with the appropriate columns--n^2 but who cares?
    137   1.1     bjh21  */
    138   1.1     bjh21 void
    139   1.1     bjh21 fldreset(fldtab)
    140   1.1     bjh21 	struct field *fldtab;
    141   1.1     bjh21 {
    142   1.1     bjh21 	int i;
    143   1.1     bjh21 	fldtab[0].tcol.p = clist+ncols-1;
    144   1.1     bjh21 	for (++fldtab; fldtab->icol.num; ++fldtab) {
    145   1.5  jdolecek 		for (i = 0; fldtab->icol.num != clist[i].num; i++)
    146   1.5  jdolecek 			;
    147   1.1     bjh21 		fldtab->icol.p = clist + i;
    148   1.1     bjh21 		if (!fldtab->tcol.num)
    149   1.1     bjh21 			continue;
    150   1.5  jdolecek 		for (i = 0; fldtab->tcol.num != clist[i].num; i++)
    151   1.5  jdolecek 			;
    152   1.1     bjh21 		fldtab->tcol.p = clist + i;
    153   1.1     bjh21 	}
    154   1.1     bjh21 }
    155   1.1     bjh21 
    156   1.1     bjh21 /*
    157   1.1     bjh21  * interprets a column in a -k field
    158   1.1     bjh21  */
    159   1.3  jdolecek static const char *
    160   1.1     bjh21 setcolumn(pos, cur_fld, gflag)
    161   1.3  jdolecek 	const char *pos;
    162   1.1     bjh21 	struct field *cur_fld;
    163   1.1     bjh21 	int gflag;
    164   1.1     bjh21 {
    165   1.1     bjh21 	struct column *col;
    166  1.10  jdolecek 	char *npos;
    167   1.1     bjh21 	int tmp;
    168  1.10  jdolecek 	col = cur_fld->icol.num ? (&cur_fld->tcol) : (&cur_fld->icol);
    169  1.10  jdolecek 	col->num = (int) strtol(pos, &npos, 10);
    170  1.10  jdolecek 	pos = npos;
    171   1.1     bjh21 	if (col->num <= 0 && !(col->num == 0 && col == &(cur_fld->tcol)))
    172   1.1     bjh21 		errx(2, "field numbers must be positive");
    173   1.1     bjh21 	if (*pos == '.') {
    174   1.1     bjh21 		if (!col->num)
    175   1.1     bjh21 			errx(2, "cannot indent end of line");
    176   1.6   thorpej 		++pos;
    177  1.10  jdolecek 		col->indent = (int) strtol(pos, &npos, 10);
    178  1.10  jdolecek 		pos = npos;
    179   1.1     bjh21 		if (&cur_fld->icol == col)
    180   1.1     bjh21 			col->indent--;
    181   1.1     bjh21 		if (col->indent < 0)
    182   1.1     bjh21 			errx(2, "illegal offset");
    183   1.1     bjh21 	}
    184  1.10  jdolecek 	for(; (tmp = optval(*pos, cur_fld->tcol.num)); pos++)
    185  1.10  jdolecek 		cur_fld->flags |= tmp;
    186   1.1     bjh21 	if (cur_fld->icol.num == 0)
    187   1.1     bjh21 		cur_fld->icol.num = 1;
    188   1.1     bjh21 	return (pos);
    189   1.1     bjh21 }
    190   1.1     bjh21 
    191   1.1     bjh21 int
    192   1.1     bjh21 setfield(pos, cur_fld, gflag)
    193   1.3  jdolecek 	const char *pos;
    194   1.1     bjh21 	struct field *cur_fld;
    195   1.1     bjh21 	int gflag;
    196   1.1     bjh21 {
    197   1.1     bjh21 	int tmp;
    198   1.4  jdolecek 
    199   1.1     bjh21 	cur_fld->weights = ascii;
    200   1.1     bjh21 	cur_fld->mask = alltable;
    201   1.4  jdolecek 
    202   1.1     bjh21 	pos = setcolumn(pos, cur_fld, gflag);
    203   1.1     bjh21 	if (*pos == '\0')			/* key extends to EOL. */
    204   1.1     bjh21 		cur_fld->tcol.num = 0;
    205   1.1     bjh21 	else {
    206   1.1     bjh21 		if (*pos != ',')
    207   1.1     bjh21 			errx(2, "illegal field descriptor");
    208   1.1     bjh21 		setcolumn((++pos), cur_fld, gflag);
    209   1.1     bjh21 	}
    210   1.1     bjh21 	if (!cur_fld->flags)
    211   1.1     bjh21 		cur_fld->flags = gflag;
    212   1.1     bjh21 	tmp = cur_fld->flags;
    213   1.1     bjh21 
    214   1.1     bjh21 	/*
    215   1.1     bjh21 	 * Assign appropriate mask table and weight table.
    216   1.1     bjh21 	 * If the global weights are reversed, the local field
    217   1.1     bjh21 	 * must be "re-reversed".
    218   1.1     bjh21 	 */
    219   1.4  jdolecek 	if (((tmp & R) ^ (gflag & R)) && (tmp & F))
    220   1.1     bjh21 		cur_fld->weights = RFtable;
    221   1.1     bjh21 	else if (tmp & F)
    222   1.1     bjh21 		cur_fld->weights = Ftable;
    223   1.1     bjh21 	else if ((tmp & R) ^ (gflag & R))
    224   1.1     bjh21 		cur_fld->weights = Rascii;
    225   1.4  jdolecek 
    226   1.1     bjh21 	if (tmp & I)
    227   1.1     bjh21 		cur_fld->mask = itable;
    228   1.1     bjh21 	else if (tmp & D)
    229   1.1     bjh21 		cur_fld->mask = dtable;
    230   1.4  jdolecek 
    231   1.1     bjh21 	cur_fld->flags |= (gflag & (BI | BT));
    232   1.1     bjh21 	if (!cur_fld->tcol.indent)	/* BT has no meaning at end of field */
    233   1.4  jdolecek 		cur_fld->flags &= ~BT;
    234   1.4  jdolecek 
    235   1.1     bjh21 	if (cur_fld->tcol.num && !(!(cur_fld->flags & BI)
    236   1.1     bjh21 	    && cur_fld->flags & BT) && (cur_fld->tcol.num <= cur_fld->icol.num
    237   1.1     bjh21 	    && cur_fld->tcol.indent < cur_fld->icol.indent))
    238   1.1     bjh21 		errx(2, "fields out of order");
    239   1.1     bjh21 	insertcol(cur_fld);
    240   1.1     bjh21 	return (cur_fld->tcol.num);
    241   1.1     bjh21 }
    242   1.1     bjh21 
    243   1.1     bjh21 int
    244   1.1     bjh21 optval(desc, tcolflag)
    245   1.1     bjh21 	int desc, tcolflag;
    246   1.1     bjh21 {
    247   1.1     bjh21 	switch(desc) {
    248   1.1     bjh21 		case 'b':
    249   1.1     bjh21 			if (!tcolflag)
    250   1.5  jdolecek 				return (BI);
    251   1.1     bjh21 			else
    252   1.5  jdolecek 				return (BT);
    253   1.5  jdolecek 		case 'd': return (D);
    254   1.5  jdolecek 		case 'f': return (F);
    255   1.5  jdolecek 		case 'i': return (I);
    256   1.5  jdolecek 		case 'n': return (N);
    257   1.5  jdolecek 		case 'r': return (R);
    258   1.5  jdolecek 		default:  return (0);
    259   1.1     bjh21 	}
    260   1.1     bjh21 }
    261   1.1     bjh21 
    262  1.11  jdolecek /*
    263  1.11  jdolecek  * Replace historic +SPEC arguments with appropriate -kSPEC.
    264  1.11  jdolecek  */
    265   1.1     bjh21 void
    266   1.1     bjh21 fixit(argc, argv)
    267   1.1     bjh21 	int *argc;
    268   1.1     bjh21 	char **argv;
    269   1.1     bjh21 {
    270  1.11  jdolecek 	int i, j, fplus=0;
    271  1.11  jdolecek 	char *vpos, *tpos, spec[20];
    272  1.11  jdolecek 	int col, indent;
    273  1.11  jdolecek 	size_t sz;
    274   1.1     bjh21 
    275   1.1     bjh21 	for (i = 1; i < *argc; i++) {
    276  1.11  jdolecek 		if (argv[i][0] != '+' && !fplus)
    277  1.11  jdolecek 			continue;
    278  1.11  jdolecek 
    279  1.11  jdolecek 		if (fplus && (argv[i][0] != '-' || !isdigit(argv[i][1]))) {
    280  1.11  jdolecek 			/* not a -POS argument, skip */
    281  1.11  jdolecek 			fplus = 0;
    282  1.11  jdolecek 			continue;
    283  1.11  jdolecek 		}
    284  1.11  jdolecek 
    285  1.11  jdolecek 		/* parse spec */
    286  1.11  jdolecek 		tpos = argv[i]+1;
    287  1.11  jdolecek 		col = (int)strtol(tpos, &tpos, 10);
    288  1.11  jdolecek 		if (*tpos == '.') {
    289  1.11  jdolecek 			++tpos;
    290  1.11  jdolecek 			indent = (int) strtol(tpos, &tpos, 10);
    291  1.11  jdolecek 		} else
    292  1.11  jdolecek 			indent = 0;
    293  1.11  jdolecek 		/* tpos points to optional flags now */
    294  1.11  jdolecek 
    295  1.11  jdolecek 		/*
    296  1.11  jdolecek 		 * For x.y, the obsolescent variant assumed 0 == beginning
    297  1.11  jdolecek 		 * of line, while the new form uses 0 == end of line.
    298  1.11  jdolecek 		 * Convert accordingly.
    299  1.11  jdolecek 		 */
    300  1.11  jdolecek 		if (!fplus) {
    301  1.11  jdolecek 			/* +POS */
    302  1.11  jdolecek 			col += 1;
    303  1.11  jdolecek 			indent += 1;
    304  1.11  jdolecek 		} else {
    305  1.11  jdolecek 			/* -POS */
    306  1.11  jdolecek 			if (indent > 0)
    307  1.11  jdolecek 				col += 1;
    308  1.11  jdolecek 		}
    309  1.11  jdolecek 
    310  1.11  jdolecek 		/* new style spec */
    311  1.11  jdolecek 		sz = snprintf(spec, sizeof(spec), "%d.%d%s", col, indent,
    312  1.11  jdolecek 		    tpos);
    313  1.11  jdolecek 
    314  1.11  jdolecek 		if (!fplus) {
    315  1.11  jdolecek 			/* Replace the +POS argument with new-style -kSPEC */
    316  1.11  jdolecek 			asprintf(&vpos, "-k%s", spec);
    317   1.1     bjh21 			argv[i] = vpos;
    318  1.11  jdolecek 			fplus = 1;
    319  1.11  jdolecek 		} else {
    320  1.11  jdolecek 			/*
    321  1.11  jdolecek 			 * Append the spec to one previously generated from
    322  1.11  jdolecek 			 * +POS argument, and remove the argv element.
    323  1.11  jdolecek 			 */
    324  1.11  jdolecek 			asprintf(&vpos, "%s,%s", argv[i-1], spec);
    325  1.11  jdolecek 			free(argv[i-1]);
    326  1.11  jdolecek 			argv[i-1] = vpos;
    327  1.11  jdolecek 			for (j=i; j < *argc; j++)
    328  1.11  jdolecek 				argv[j] = argv[j+1];
    329  1.11  jdolecek 			*argc -= 1;
    330   1.1     bjh21 		}
    331   1.1     bjh21 	}
    332   1.1     bjh21 }
    333   1.1     bjh21 
    334   1.1     bjh21 /*
    335   1.1     bjh21  * ascii, Rascii, Ftable, and RFtable map
    336   1.1     bjh21  * REC_D -> REC_D;  {not REC_D} -> {not REC_D}.
    337   1.1     bjh21  * gweights maps REC_D -> (0 or 255); {not REC_D} -> {not gweights[REC_D]}.
    338   1.1     bjh21  * Note: when sorting in forward order, to encode character zero in a key,
    339   1.1     bjh21  * use \001\001; character 1 becomes \001\002.  In this case, character 0
    340   1.1     bjh21  * is reserved for the field delimiter.  Analagously for -r (fld_d = 255).
    341   1.1     bjh21  * Note: this is only good for ASCII sorting.  For different LC 's,
    342   1.1     bjh21  * all bets are off.  See also num_init in number.c
    343   1.1     bjh21  */
    344   1.1     bjh21 void
    345   1.1     bjh21 settables(gflags)
    346   1.1     bjh21 	int gflags;
    347   1.1     bjh21 {
    348   1.1     bjh21 	u_char *wts;
    349   1.1     bjh21 	int i, incr;
    350   1.1     bjh21 	for (i=0; i < 256; i++) {
    351   1.1     bjh21 		ascii[i] = i;
    352   1.1     bjh21 		if (i > REC_D && i < 255 - REC_D+1)
    353   1.1     bjh21 			Rascii[i] = 255 - i + 1;
    354   1.1     bjh21 		else
    355   1.1     bjh21 			Rascii[i] = 255 - i;
    356   1.1     bjh21 		if (islower(i)) {
    357   1.4  jdolecek 			Ftable[i] = Ftable[toupper(i)];
    358   1.4  jdolecek 			RFtable[i] = RFtable[toupper(i)];
    359   1.1     bjh21 		} else if (REC_D>= 'A' && REC_D < 'Z' && i < 'a' && i > REC_D) {
    360   1.1     bjh21 			Ftable[i] = i + 1;
    361   1.1     bjh21 			RFtable[i] = Rascii[i] - 1;
    362   1.1     bjh21 		} else {
    363   1.1     bjh21 			Ftable[i] = i;
    364   1.1     bjh21 			RFtable[i] = Rascii[i];
    365   1.1     bjh21 		}
    366   1.1     bjh21 		alltable[i] = 1;
    367   1.4  jdolecek 
    368   1.1     bjh21 		if (i == '\n' || isprint(i))
    369   1.1     bjh21 			itable[i] = 1;
    370   1.4  jdolecek 		else
    371   1.4  jdolecek 			itable[i] = 0;
    372   1.4  jdolecek 
    373   1.1     bjh21 		if (i == '\n' || i == '\t' || i == ' ' || isalnum(i))
    374   1.1     bjh21 			dtable[i] = 1;
    375   1.4  jdolecek 		else
    376   1.4  jdolecek 			dtable[i] = 0;
    377   1.1     bjh21 	}
    378   1.4  jdolecek 
    379   1.1     bjh21 	Rascii[REC_D] = RFtable[REC_D] = REC_D;
    380   1.4  jdolecek 	if (isupper(REC_D))
    381   1.4  jdolecek 		Ftable[tolower(REC_D)]++;
    382   1.4  jdolecek 
    383   1.4  jdolecek 	if ((gflags & R) && !((gflags & F) && SINGL_FLD))
    384   1.1     bjh21 		wts = Rascii;
    385   1.4  jdolecek 	else if (!((gflags & F) && SINGL_FLD))
    386   1.1     bjh21 		wts = ascii;
    387   1.1     bjh21 	else if (gflags & R)
    388   1.1     bjh21 		wts = RFtable;
    389   1.1     bjh21 	else
    390   1.1     bjh21 		wts = Ftable;
    391   1.4  jdolecek 
    392   1.1     bjh21 	memmove(gweights, wts, sizeof(gweights));
    393   1.1     bjh21 	incr = (gflags & R) ? -1 : 1;
    394   1.1     bjh21 	for (i = 0; i < REC_D; i++)
    395   1.1     bjh21 		gweights[i] += incr;
    396   1.1     bjh21 	gweights[REC_D] = ((gflags & R) ? 255 : 0);
    397   1.4  jdolecek 	if (SINGL_FLD && (gflags & F)) {
    398   1.1     bjh21 		for (i = 0; i < REC_D; i++) {
    399   1.1     bjh21 			ascii[i] += incr;
    400   1.1     bjh21 			Rascii[i] += incr;
    401   1.1     bjh21 		}
    402   1.1     bjh21 		ascii[REC_D] = Rascii[REC_D] = gweights[REC_D];
    403   1.1     bjh21 	}
    404   1.1     bjh21 }
    405