home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / pgmutil / val_link.zip / VAL.C < prev    next >
Text File  |  1989-02-18  |  4KB  |  74 lines

  1. /*                                   VAL.C                                  */
  2.  
  3. /*+-------------------------------------------------------------------------+
  4.   |                                                                         |
  5.   |  This program is released to the public domain by the author on         |
  6.   |  February 15, 1989 at the Software Development Conference,              |
  7.   |  San Francisco, CA.  With the understanding that there are no           |
  8.   |  warranties of any sort either expressed or implied, you may use the    |
  9.   |  code in whole or part for any lawful purpose.  The author does not     |
  10.   |  warrant or guarantee that this code is fit for any particular purpose. |
  11.   |  You are under no obligation to acknowledge the author when using this  |
  12.   |  code, but you may do so if you desire.  The author neither seeks nor   |
  13.   |  desires any contributions for this code.                               |
  14.   |                                                                         |
  15.   |  Should you desire to communicate with the author, the preferred method |
  16.   |  is via the author's bulletin board, Pontchippi.  Pontchippi is an      |
  17.   |  OPUS board.  You may contact it directly at 504-244-1417 or via net    |
  18.   |  mail to node 390/105.  The board has a 9600 baud US Robotics Courier   |
  19.   |  HST modem.  Should you contact the board directly, access to the board |
  20.   |  is granted immediately up completion of a very simple questionnaire.   |
  21.   |                                                                         |
  22.   |  The author wishes to acknowledge and thank Jack Purdum and Tim Leslie  |
  23.   |  of Ecosoft for their assistance and support.  In addition to Jack and  |
  24.   |  Tim, Steve Russell of SLR Systems was also of invaluable assistance.   |
  25.   |  All helped in this project by debugging and offering their expert      |
  26.   |  advice and guidance.  They always had time for me seemingly whenever   |
  27.   |  I requested it.                                                        |
  28.   |                                                                         |
  29.   |  Finally, this program is dedicated to the memory of my father-in-law,  |
  30.   |  Mariano "Val" Valentino.  The only request the author makes for        |
  31.   |  using the program is that the program name be left as "VAL" in his     |
  32.   |  memory.                                                                |
  33.   |                                                                         |
  34.   |  David Troendle                                                         |
  35.   |  New Orleans, LA                                                        |
  36.   |  February 10, 1989                                                                       |
  37.   |                                                                         |
  38.   +-------------------------------------------------------------------------+*/
  39.  
  40. #include <stdio.h>
  41. #include <stdarg.h>
  42. #include <stdlib.h>
  43. #include <ctype.h>
  44. #include <dos.h>
  45. #include <string.h>
  46.  
  47. #include "langext.h"
  48. #include "defines.h"
  49. #include "types.h"
  50. #include "subs.h"
  51. #include "globals.h"
  52.  
  53. #include "dictary.c"
  54. #include "endlink.c"
  55. #include "execfile.c"
  56. #include "files.c"
  57. #include "fixup.c"
  58. #include "initlink.c"
  59. #include "library.c"
  60. #include "linkerio.c"
  61. #include "list.c"
  62. #include "main.c"
  63. #include "map.c"
  64. #include "memory.c"
  65. #include "object.c"
  66. #include "order.c"
  67. #include "string.c"
  68. #include "timer.c"
  69. #include "tmodule.c"
  70. #include "token.c"
  71. #include "userinp.c"
  72.  
  73.  
  74.