home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / pctech / hlsrc / hl.h < prev    next >
C/C++ Source or Header  |  1988-09-09  |  786b  |  37 lines

  1. /*+
  2.     Name:    hl.h
  3.     Date:    07-Sep-1988
  4.     Author:    Kent J. Quirk
  5.         (c) Copyright 1988 Ziff Communications Co.
  6.     Abstract:    The standard header info for the files in the benchmarks.
  7. -*/    
  8.  
  9. void start_timer(int);
  10. void stop_timer();
  11. long get_timer(int);
  12. char *time_pct(long, long);
  13. char *time_secs(long);
  14. int init_video();
  15. void disktest(long);
  16. void shellsort();
  17. FILE *mustopen(char *, char *);
  18. int draw_times(long *data1,long *data2,char (*text)[80],int npts,char *f1,char *f2);
  19.  
  20. typedef struct {
  21.     int     index;
  22.     char    name[32],
  23.         addr1[48],
  24.         addr2[48],
  25.         city[24],
  26.         state[2],
  27.         zip[10];
  28.     int     qty;
  29. } DATAREC;
  30.  
  31. typedef struct {
  32.     char    zip[10];
  33.     char    name[6];
  34.     char    hexindex[4];
  35.     long    fileloc;
  36. } INDEXREC;
  37.