home *** CD-ROM | disk | FTP | other *** search
- /*+
- Name: hl.h
- Date: 07-Sep-1988
- Author: Kent J. Quirk
- (c) Copyright 1988 Ziff Communications Co.
- Abstract: The standard header info for the files in the benchmarks.
- -*/
-
- void start_timer(int);
- void stop_timer();
- long get_timer(int);
- char *time_pct(long, long);
- char *time_secs(long);
- int init_video();
- void disktest(long);
- void shellsort();
- FILE *mustopen(char *, char *);
- int draw_times(long *data1,long *data2,char (*text)[80],int npts,char *f1,char *f2);
-
- typedef struct {
- int index;
- char name[32],
- addr1[48],
- addr2[48],
- city[24],
- state[2],
- zip[10];
- int qty;
- } DATAREC;
-
- typedef struct {
- char zip[10];
- char name[6];
- char hexindex[4];
- long fileloc;
- } INDEXREC;
-