home *** CD-ROM | disk | FTP | other *** search
- /*+
- Name: hlstate.h
- Date: 07-Sep-1988
- Author: Kent J. Quirk
- (c) Copyright 1988 Ziff Communications Co.
- Abstract: Contains states and the first two digits of their zip codes.
- -*/
-
- typedef struct {
- char state[2];
- int leadzip;
- } STATES;
-
- STATES states[] = {
- {"AL", 36},
- {"AK", 99},
- {"AZ", 86},
- {"AR", 72},
- {"CA", 92},
- {"CO", 80},
- {"CT", 06},
- {"DE", 19},
- {"DC", 20},
- {"FL", 33},
- {"GA", 30},
- {"HI", 96},
- {"ID", 83},
- {"IL", 60},
- {"IN", 46},
- {"IA", 50},
- {"KS", 66},
- {"KY", 40},
- {"LA", 70},
- {"ME", 04},
- {"MD", 21},
- {"MA", 01},
- {"MI", 49},
- {"MN", 56},
- {"MS", 38},
- {"MO", 65},
- {"MT", 59},
- {"NB", 68},
- {"NV", 89},
- {"NH", 03},
- {"NJ", 07},
- {"NM", 87},
- {"NY", 10},
- {"NC", 27},
- {"ND", 58},
- {"OH", 45},
- {"OK", 43},
- {"OR", 97},
- {"PA", 15},
- {"RI", 02},
- {"SC", 29},
- {"SD", 57},
- {"TN", 37},
- {"TX", 79},
- {"UT", 84},
- {"VT", 05},
- {"VA", 22},
- {"WA", 98},
- {"WV", 25},
- {"WI", 54},
- {"WY", 82}
- };
-