/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ /* All Rights Reserved */ /* * Copyright (c) 1980 Regents of the University of California. * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. */ /* * Copyright (c) 1983, 1984 1985, 1986, 1987, 1988, Sun Microsystems, Inc. * All Rights Reserved. */ /* from OpenSolaris "inv6.c 1.3 05/06/02 SMI" */ /* * Portions Copyright (c) 2005 Gunnar Ritter, Freiburg i. Br., Germany * * Sccsid @(#)inv6.c 1.3 (gritter) 10/22/05 */ #include #include #include #include "refer..c" void whash(FILE *ft, FILE *fa, FILE *fb, int nhash, int _iflong, long *ptotct, int *phused) { char line[100]; int hash = 0, hused = 0; long totct = 0L; int ct = 0; long point; long opoint = -1; int k; long lp; long *hpt; int *_hfreq; hpt = calloc (nhash+1, sizeof(*hpt)); assert (hpt != NULL); _hfreq = calloc (nhash, sizeof(*_hfreq)); assert (_hfreq != NULL); hpt[0] = 0; lp= 0; while (fgets(line, 100, ft)) { totct++; sscanf(line, "%d %ld", &k, &point); if (hash < k) { hused++; if (_iflong) putl(-1L, fb); else putw(-1, fb); _hfreq[hash]=ct; while (hash