home *** CD-ROM | disk | FTP | other *** search
/ Frostbyte's 1980s DOS Shareware Collection / floppyshareware.zip / floppyshareware / BOUT / BT2404SC.ZIP / BTLNG.C < prev    next >
C/C++ Source or Header  |  1990-07-28  |  6KB  |  159 lines

  1. /*
  2. ** Henry Clark 1:124/6120 made changes here 7/28/90
  3. */
  4. /*--------------------------------------------------------------------------*/
  5. /*                                                                          */
  6. /*                                                                          */
  7. /*      ------------         Bit-Bucket Software, Co.                       */
  8. /*      \ 10001101 /         Writers and Distributors of                    */
  9. /*       \ 011110 /          Freely Available<tm> Software.                 */
  10. /*        \ 1011 /                                                          */
  11. /*         ------                                                           */
  12. /*                                                                          */
  13. /*  (C) Copyright 1987-90, Bit Bucket Software Co., a Delaware Corporation. */
  14. /*                                                                          */
  15. /*                                                                          */
  16. /*               This module was written by Vince Perriello                 */
  17. /*                                                                          */
  18. /*                                                                          */
  19. /*                    BinkleyTerm Language File Compiler                    */
  20. /*                                                                          */
  21. /*                                                                          */
  22. /*    For complete  details  of the licensing restrictions, please refer    */
  23. /*    to the License  agreement,  which  is published in its entirety in    */
  24. /*    the MAKEFILE and BT.C, and also contained in the file LICENSE.240.    */
  25. /*                                                                          */
  26. /*    USE  OF THIS FILE IS SUBJECT TO THE  RESTRICTIONS CONTAINED IN THE    */
  27. /*    BINKLEYTERM  LICENSING  AGREEMENT.  IF YOU DO NOT FIND THE TEXT OF    */
  28. /*    THIS  AGREEMENT IN ANY OF THE  AFOREMENTIONED FILES,  OR IF YOU DO    */
  29. /*    NOT HAVE THESE FILES,  YOU  SHOULD  IMMEDIATELY CONTACT BIT BUCKET    */
  30. /*    SOFTWARE CO.  AT ONE OF THE  ADDRESSES  LISTED BELOW.  IN NO EVENT    */
  31. /*    SHOULD YOU  PROCEED TO USE THIS FILE  WITHOUT HAVING  ACCEPTED THE    */
  32. /*    TERMS  OF  THE  BINKLEYTERM  LICENSING  AGREEMENT,  OR  SUCH OTHER    */
  33. /*    AGREEMENT AS YOU ARE ABLE TO REACH WITH BIT BUCKET SOFTWARE, CO.      */
  34. /*                                                                          */
  35. /*                                                                          */
  36. /* You can contact Bit Bucket Software Co. at any one of the following      */
  37. /* addresses:                                                               */
  38. /*                                                                          */
  39. /* Bit Bucket Software Co.        FidoNet  1:104/501, 1:132/491, 1:141/491  */
  40. /* P.O. Box 460398                AlterNet 7:491/0                          */
  41. /* Aurora, CO 80046               BBS-Net  86:2030/1                        */
  42. /*                                Internet f491.n132.z1.fidonet.org         */
  43. /*                                                                          */
  44. /* Please feel free to contact us at any time to share your comments about  */
  45. /* our software and/or licensing policies.                                  */
  46. /*                                                                          */
  47. /*--------------------------------------------------------------------------*/
  48.  
  49. #include <stdio.h>
  50. #include <stdlib.h>
  51.  
  52. #include "language.h"
  53.  
  54.  
  55. /*
  56.  * Assume average length of a string at 32 characters
  57.  *
  58.  */
  59.  
  60. #define MAX_STRINGS 1000
  61. #define MAX_MEMORY (MAX_STRINGS * 32)
  62.  
  63. char **pointers;
  64. int pointer_size;
  65.  
  66. char *memory;
  67. int memory_size;
  68.  
  69. /*
  70. ** Henry Clark 1:124/6120 made changes here 7/28/90
  71. */
  72. void cdecl main (int, char **);
  73. static void usage (void);
  74.  
  75.  
  76. /*
  77.  * Read in a raw text file and write out a compiled BinkleyTerm
  78.  * language file.
  79.  *
  80.  */
  81.  
  82. /*
  83. ** Henry Clark 1:124/6120 made changes here 7/28/90
  84. */
  85. void cdecl main (argc, argv)
  86. int argc;
  87. char **argv;
  88. {
  89.     char *malloc_target;
  90.     int error;
  91.  
  92.    /*
  93.     * Print out the copyright notice.
  94.     */
  95.  
  96.    (void) fprintf (stderr, "BinkleyTerm Language File Compiler Version 2.40");
  97.    (void) fprintf (stderr, "\n(C) Copyright 1987-90, Bit Bucket Software, Co. ALL RIGHTS RESERVED.\n\n");
  98.  
  99.    /*
  100.     * Make sure we were called with the requisite number of arguments
  101.     *
  102.     */
  103.  
  104.     if (argc != 3)
  105.         usage ();
  106.  
  107.    /*
  108.     * Allocate space for the raw character array and for the
  109.     * pointer array
  110.     *
  111.     */
  112.  
  113.     malloc_target = malloc (MAX_MEMORY);
  114.     if (malloc_target == NULL)
  115.         {
  116.         fprintf (stderr, "Unable to allocate string memory\n");
  117.         exit (250);
  118.         }
  119.     memory = malloc_target;
  120.     memory_size = MAX_MEMORY;
  121.  
  122.     malloc_target = malloc ((MAX_STRINGS + 1) * (sizeof (char *)));
  123.     if (malloc_target == NULL)
  124.         {
  125.         fprintf (stderr, "Unable to allocate pointer array\n");
  126.         exit (250);
  127.         }
  128.     pointers = (char **)malloc_target;
  129.     pointer_size = MAX_STRINGS;
  130.  
  131.  
  132.    /*
  133.     * Now read the stuff into our array.
  134.     *
  135.     */
  136.  
  137.     error = get_language (argv[1]);
  138.     if (error != 0)
  139.        exit (240);
  140.  
  141.  
  142.    /*
  143.     * Write our stuff out now.
  144.     *
  145.     */
  146.  
  147.     error = put_language (argv[2]);
  148.     if (error != 0)
  149.        exit (230);
  150. }
  151.  
  152.  
  153. static void usage ()
  154. {
  155.     fprintf (stderr, "Usage : BTLNG language_file_name output_file_name\n");
  156.     exit (255);
  157. }
  158.  
  159.