home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / telix / tlx3sort.zip / TLXSORT.DOC < prev    next >
Text File  |  1988-07-13  |  2KB  |  63 lines

  1.  
  2.         TlxSort v1.0 by Paul Roub -- sort Telix v3.0 phone directories
  3.  
  4.         This program and its sources are Copyright (C) 1988 by Paul Roub
  5.         and may not be sold for profit without the express written
  6.         consent of the author.  Redistribute them (in their entirety) as
  7.         you wish,  provided no fee is charged and all materials are
  8.         present and unmodified.
  9.  
  10.         O.K.,  enough legal crap.  By the way,  I didn't write ALL of
  11.         this - the header formats are copied verbatim from the
  12.         description distributed by PTel,  makers of Telix.  Thanks for
  13.         circulating it,  Colin.  If you find bugs in the source,  or
  14.         ideas for improvements (of which I have a few),  let me know.  If
  15.         you find the program really useful and otherwise wonderful for
  16.         some reason,  a $5 contribution wouldn't hurt anyone.  Not that
  17.         I'll starve without it,  but...
  18.  
  19.         TlxSort sorts Telix v.30 phone directories (currently by name
  20.         only).  The simplest syntax is :
  21.  
  22.            tlxsort
  23.  
  24.         which will sort TELIX.FON,  and write the sorted directory to the
  25.         same file.  Up to two parameters may be given,  that is:
  26.  
  27.           tlxsort [input file name] [output file name]
  28.  
  29.         If both are given,  the first is used as the name of the input
  30.         file,  and the second is used as the name of the output file.  If
  31.         only one is given,  it is the input file and TELIX.FON is the
  32.         output file.
  33.  
  34.         Note that the source is included for your viewing pleasure.  As
  35.         before,  I only ask that you send bug fixes or comments to me.
  36.         It's written for Microsoft C 5.0+ or QuickC.  The pack() #pragma
  37.         should be the only big portability problem -- it makes sure that
  38.         the compiler doesn't pad structure definitions with filler bytes.
  39.         If your compiler doesn't do this,  you can just delete the
  40.         #pragmas.
  41.  
  42.         Under Microsoft C,  just say:
  43.  
  44.           cl -Ox -AC tlxsort.c read_fon.c writefon.c misc.c
  45.  
  46.         or under QuickC
  47.  
  48.           qcl -Ox -AC tlxsort.c read_fon.c writefon.c misc.c
  49.  
  50.  
  51.         have fun!
  52.  
  53.         comments,  bug fixes,  or contributions should be sent to:
  54.  
  55.         Paul Roub
  56.         690 Anderson Court
  57.         Satellite Beach, FL  32937
  58.  
  59.  
  60.         you might try E-Mail on the south or central FL Fido nets,  or on
  61.         Compuserve to [71131, 157].
  62.  
  63.