home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / pctech / hlsrc / hlstate.h < prev    next >
Text File  |  1988-09-09  |  1KB  |  67 lines

  1. /*+
  2.     Name:    hlstate.h
  3.     Date:    07-Sep-1988
  4.     Author:    Kent J. Quirk
  5.         (c) Copyright 1988 Ziff Communications Co.
  6.     Abstract:    Contains states and the first two digits of their zip codes.
  7. -*/    
  8.  
  9. typedef struct {
  10.     char state[2];
  11.     int leadzip;
  12. } STATES;
  13.  
  14. STATES states[] = {
  15.     {"AL", 36},
  16.     {"AK", 99},
  17.     {"AZ", 86},
  18.     {"AR", 72},
  19.     {"CA", 92},
  20.     {"CO", 80},
  21.     {"CT", 06},
  22.     {"DE", 19},
  23.     {"DC", 20},
  24.     {"FL", 33},
  25.     {"GA", 30},
  26.     {"HI", 96},
  27.     {"ID", 83},
  28.     {"IL", 60},
  29.     {"IN", 46},
  30.     {"IA", 50},
  31.     {"KS", 66},
  32.     {"KY", 40},
  33.     {"LA", 70},
  34.     {"ME", 04},
  35.     {"MD", 21},
  36.     {"MA", 01},
  37.     {"MI", 49},
  38.     {"MN", 56},
  39.     {"MS", 38},
  40.     {"MO", 65},
  41.     {"MT", 59},
  42.     {"NB", 68},
  43.     {"NV", 89},
  44.     {"NH", 03},
  45.     {"NJ", 07},
  46.     {"NM", 87},
  47.     {"NY", 10},
  48.     {"NC", 27},
  49.     {"ND", 58},
  50.     {"OH", 45},
  51.     {"OK", 43},
  52.     {"OR", 97},
  53.     {"PA", 15},
  54.     {"RI", 02},
  55.     {"SC", 29},
  56.     {"SD", 57},
  57.     {"TN", 37},
  58.     {"TX", 79},
  59.     {"UT", 84},
  60.     {"VT", 05},
  61.     {"VA", 22},
  62.     {"WA", 98},
  63.     {"WV", 25},
  64.     {"WI", 54},
  65.     {"WY", 82}
  66. };
  67.