home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / lambda / soundpot / a / area18.lbr / AREA.DOC next >
Encoding:
Text File  |  1993-10-26  |  1.3 KB  |  30 lines

  1. Inspired by AREACODE by Kelly Smith circa 1981...
  2.  
  3. Like AREACODE, AREA searches a simple database to find telephone area codes.
  4. Unlike AREACODE, AREA will search the database for any match and report
  5. the entire record for each match.
  6.  
  7. You may use any part of an area code or name for the search. All matches
  8. will be reported.
  9.  
  10. There may be any number of records of the following form in the source file:
  11.     db    '303'
  12.     db    'Denver, Boulder, Aspen, All of Colorado'
  13.     db    0
  14.  
  15. The form of the record is fairly free except that a three digit
  16. area code is expected as the first three characters of the record.
  17. Each record is terminated with a single null (db 0).
  18.  
  19. The end of all records is terminated with a second null.
  20.  
  21. This Program is distributed as AREAxx.ASM (xx=10 to start) and you are
  22. heartily invited to add dialing areas to it or to modify it in any way.
  23. I only ask that you document any changes here at the top of the source
  24. file and in the code and change the version number.  Please make your
  25. changes available to the rest of us in source (.ASM) form.
  26.  
  27. I hope you like this one, I certainly do.  Joe Wright, (408) 297-5583
  28.                                            20 June 1987 - Version 1.0
  29.  
  30.