zopen.c (5cf1ec501a4e57f62d00c4f50154122cc1264684) | zopen.c (6127186d3cd6e65aa95c853b6d5e12590e4e4d10) |
---|---|
1/*- 2 * Copyright (c) 1985, 1986, 1992, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Diomidis Spinellis and James A. Woods, derived from original 7 * work by Spencer Thomas and Joseph Orost. 8 * --- 57 unchanged lines hidden (view full) --- 66 67#include <ctype.h> 68#include <errno.h> 69#include <signal.h> 70#include <stdio.h> 71#include <stdlib.h> 72#include <string.h> 73#include <unistd.h> | 1/*- 2 * Copyright (c) 1985, 1986, 1992, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Diomidis Spinellis and James A. Woods, derived from original 7 * work by Spencer Thomas and Joseph Orost. 8 * --- 57 unchanged lines hidden (view full) --- 66 67#include <ctype.h> 68#include <errno.h> 69#include <signal.h> 70#include <stdio.h> 71#include <stdlib.h> 72#include <string.h> 73#include <unistd.h> |
74#include "zopen.h" |
|
74 75#define BITS 16 /* Default bits. */ 76#define HSIZE 69001 /* 95% occupancy */ 77 78/* A code_int must be able to hold 2**BITS values of type int, and also -1. */ 79typedef long code_int; 80typedef long count_int; 81 --- 659 unchanged lines hidden --- | 75 76#define BITS 16 /* Default bits. */ 77#define HSIZE 69001 /* 95% occupancy */ 78 79/* A code_int must be able to hold 2**BITS values of type int, and also -1. */ 80typedef long code_int; 81typedef long count_int; 82 --- 659 unchanged lines hidden --- |