home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / bcpp1611.zip / BCPP / BCPP.CFG < prev    next >
Text File  |  1996-12-18  |  6KB  |  121 lines

  1. ; This file contains configuration parameters that are used
  2. ; within the bcpp program.
  3.  
  4. ; There are two types of parameter types : Boolean, and Integer.
  5. ; Boolean types can have only two valid values [On, Yes, or Off, No].
  6. ; Integer types can have a valid range of 0 - 500.
  7.  
  8. ;------------------------------------------------------------------------
  9. ; This parameter specifies how many lines separate between two
  10. ; functions.
  11. ;------------------------------------------------------------------------
  12. function_spacing            = 2        ; Integer
  13.  
  14. ;------------------------------------------------------------------------
  15. ; Specifies whether to use tabs in indenting code.
  16. ;------------------------------------------------------------------------
  17. use_tabs                    = yes      ; Boolean
  18.  
  19. ;------------------------------------------------------------------------
  20. ; Specifies how many spaces to indent. This parameter is also used
  21. ; for tab indenting, as 1 tab may be worth 8 spaces if so desired.
  22. ; This parameter is used to position comments in TAB mode, and expanding
  23. ; of tabs within code!
  24. ;------------------------------------------------------------------------
  25. indent_spacing              = 4        ; Integer
  26.  
  27. ;------------------------------------------------------------------------
  28. ; Defines at what start position comments that have code on the
  29. ; same line to be placed.
  30. ;------------------------------------------------------------------------
  31. comments_with_code          = 50       ; Integer
  32.  
  33. ;------------------------------------------------------------------------
  34. ; Defines at what start position comments with no code start.
  35. ;------------------------------------------------------------------------
  36. comments_with_nocode        = 0        ; Integer
  37.  
  38. ;------------------------------------------------------------------------
  39. ; Set this option to ON turns off setting indentation position of parameter
  40. ; "comments_with_nocode". Indentation is then set according to code
  41. ; position.
  42. ;------------------------------------------------------------------------
  43. leave_comments_nocode       = yes      ; Boolean
  44.  
  45. ;------------------------------------------------------------------------
  46. ; Use this option is used to change non-ascii (non-printable) chars to
  47. ; octal notation if they lie within quotes. Either
  48. ; Ascii_Chars_Only, XOR Leave_Graphic_Chars parameters need to be set
  49. ; as a True value for this parameter to take effect.
  50. ;------------------------------------------------------------------------
  51. NonAscii_Quotes_to_Octal    = no       ; Boolean
  52.  
  53. ;------------------------------------------------------------------------
  54. ; Setting this parameter to yes will strip non-printable characters
  55. ; from the source files, but leave any character that are IBM
  56. ; graphics alone. Any non-printable characters that lie within
  57. ; quotes will be transformed into octal/character notation, if
  58. ; NonAscii_Quotes_To_Octal parameter is set to True.
  59. ;------------------------------------------------------------------------
  60. leave_graphic_chars         = no       ; Boolean
  61.  
  62. ;------------------------------------------------------------------------
  63. ; Setting this parameter to yes will strip any non-printable,
  64. ; non-ascii characters from the input file. Any non-printable
  65. ; octal/character notation if NonAscii_Quotes_To_Octal is set to
  66. ; True. Comment out this parameter if you are using
  67. ; Leave_Graphic_Chars parameter, as this parameter will override
  68. ; it.
  69. ;------------------------------------------------------------------------
  70. ascii_chars_only            = no       ; Boolean
  71.  
  72. ;------------------------------------------------------------------------
  73. ; This parameter will place open braces on a new line after it's
  74. ; associated code if set on/yes. Else the brace will be place on
  75. ; next above line if possible, with it's code.
  76. ;------------------------------------------------------------------------
  77. place_brace_on_new_line     = yes      ; Boolean
  78.  
  79. ;------------------------------------------------------------------------
  80. ; This parameter will stop output from the program corrupting output
  81. ; that may exit from the program via the standard output.
  82. ; If this parameter is set ot off/no then no output is generated from
  83. ; the program, unless an error is encounted
  84. ;------------------------------------------------------------------------
  85. program_output              = yes      ; Boolean
  86.  
  87. ;------------------------------------------------------------------------
  88. ; Specifies what the intenal memory requirements will be in size of the
  89. ; line processing buffer. This essentially is used only for open brace
  90. ; relocation in kernighan/ritchie style.
  91. ;------------------------------------------------------------------------
  92. Queue_Buffer                = 50       ; Integer
  93.  
  94. ;------------------------------------------------------------------------
  95. ; If this option is set to true then the input file be backup into a
  96. ; another file with a ".bac" extension added to the end of the file
  97. ; name.
  98. ;------------------------------------------------------------------------
  99. Backup_File                 = yes      ; Boolean
  100.  
  101. ;------------------------------------------------------------------------
  102. ; Added by Nitin Chandra on 10/12/1996. E-Mail: nitin@poboxes.com
  103. ;                                               (New Delhi, India)
  104. ;------------------------------------------------------------------------
  105. ;------------------------------------------------------------------------
  106. ; If this option is set to true then the input file is indented to my :)
  107. ; style which is one of the 3 commonly used styles...experiment....
  108. ;------------------------------------------------------------------------
  109. Format_Style                = yes      ; Boolean
  110.  
  111. ;------------------------------------------------------------------------
  112. ; If this option is set to true then the function braces are indented as
  113. ; well
  114. ;------------------------------------------------------------------------
  115. Function_Indent             = no       ; Boolean
  116.  
  117. ;------------------------------------------------------------------------
  118. ; If this option is set to true then the output file has CR/LF pairs
  119. ;------------------------------------------------------------------------
  120. DOS_Format                  = yes      ; Boolean
  121.