home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume24 / yabbawhap / part03 / texts.c < prev    next >
C/C++ Source or Header  |  1991-10-09  |  6KB  |  165 lines

  1. /* Placed into the public domain by Daniel J. Bernstein. */
  2.  
  3. /* If you change the code, you should (1) add your name to sqauthor[] */
  4. /* and/or unsqauthor[]; (2) add a patch label to the version numbers */
  5. /* in sqversion[], sqcopyright[], unsqversion[], and unsqcopyright[]; */
  6. /* (3) change squsage[], sqhelp[], unsqusage[], and unsqhelp[] if you */
  7. /* changed the interface. The patch label should be a slash, your */
  8. /* initials, and the date the patch was released---e.g., version */
  9. /* 0.98 might become 0.98/JS032291 and then 0.98/JS032291/SS040591. */
  10. /* If you let me know about your changes, I'll try to integrate them */
  11. /* into the next release. */
  12.  
  13. #include "texts.h"
  14.  
  15. char *sqauthor[] = {
  16. "yabbawhap was written by Daniel J. Bernstein." ,
  17. "Internet address: brnstnd@nyu.edu." ,
  18. 0 } ;
  19.  
  20. char *sqversion[] = {
  21. "yabbawhap version 1.00, March 19, 1991." ,
  22. "Placed into the public domain by Daniel J. Bernstein." ,
  23. 0 } ;
  24.  
  25. char *sqcopyright[] = {
  26. "yabbawhap version 1.00, March 19, 1991." ,
  27. "Placed into the public domain by Daniel J. Bernstein." ,
  28. "" ,
  29. "There is no copyright on this code. You may use it in any way you want." ,
  30. "" ,
  31. "If you have questions about this program or about this notice, or if you" ,
  32. "have a patch that you don't mind sharing, please contact me on the Internet" ,
  33. "at brnstnd@nyu.edu." ,
  34. 0 } ;
  35.  
  36. char *sqwarranty[] = {
  37. "Daniel J. Bernstein disclaims all warranties to the extent permitted" ,
  38. "by applicable law. He is not and shall not be liable for any damages" ,
  39. "arising from the use of this program. This disclaimer shall be governed" ,
  40. "by the laws of the state of New York." ,
  41. "" ,
  42. "In other words, use this program at your own risk." ,
  43. "" ,
  44. "If you have questions about this program or about this disclaimer of" ,
  45. "warranty, please feel free to contact me at brnstnd@nyu.edu on the" ,
  46. "Internet." ,
  47. 0 } ;
  48.  
  49. char *squsage[] = {
  50. #ifdef WHAP
  51. "Usage: whap [ -mmem ] [ -znum ] [ -Zfuzz ] [ -qQv^rRACHUVW ]" ,
  52. "Help:  whap -H" ,
  53. #else
  54. "Usage: yabba [ -mmem ] [ -znum ] [ -Zfuzz ] [ -qQv^rRACHUVW ]" ,
  55. "Help:  yabba -H" ,
  56. #endif
  57. 0 } ;
  58.  
  59. char *sqhelp[] = {
  60. #ifdef WHAP
  61. "whap compresses its input using AP coding. It writes the result to its output." ,
  62. "whap -ACHUVW: print authorship notice, copyright notice, this notice," ,
  63. "              short usage summary, version number, disclaimer of warranty" ,
  64. "whap [ -mmem ] [ -znum ] [ -Zfuzz ] [ -qQv^rR ]: compress" ,
  65. #else
  66. "yabba compresses its input using Y coding. It writes the result to its output." ,
  67. "yabba -ACHUVW: print authorship notice, copyright notice, this notice," ,
  68. "               short usage summary, version number, disclaimer of warranty" ,
  69. "yabba [ -mmem ] [ -znum ] [ -Zfuzz ] [ -qQv^rR ]: compress" ,
  70. #endif
  71. "-mmem: set block size to mem (default: factory 65533 chars, here %d)" ,
  72. "-r: randomize output to prepare for encryption; also omit header" ,
  73. "-R: don't randomize (default); use header" ,
  74. "-q: quiet (nothing on standard error)" ,
  75. "-Q: normal level of verbosity" ,
  76. "-v: verbose: like  In: 312163 chars  Out: 106253 chars  Whapped to: 34%%" ,
  77. "-znum: set blocking test length (factory default 8192)" ,
  78. "-Zfuzz: set blocking fuzz (factory default 30)" ,
  79. "-^: like -v, but print percent saved rather than percent remaining" ,
  80. "" ,
  81. #ifdef WHAP
  82. "unwhap must be given the same settings of -m and -r/-R." ,
  83. #else
  84. "unyabba must be given the same settings of -m and -r/-R." ,
  85. #endif
  86. "" ,
  87. "If you have questions about or suggestions for yabbawhap, please feel free" ,
  88. "to contact the author, Daniel J. Bernstein, at brnstnd@nyu.edu on the" ,
  89. "Internet." ,
  90. 0 } ;
  91.  
  92. char *unsqauthor[] = {
  93. "yabbawhap was written by Daniel J. Bernstein." ,
  94. "Internet address: brnstnd@nyu.edu." ,
  95. 0 } ;
  96.  
  97. char *unsqversion[] = {
  98. "yabbawhap version 1.00, March 19, 1991." ,
  99. "Placed into the public domain by Daniel J. Bernstein." ,
  100. 0 } ;
  101.  
  102. char *unsqcopyright[] = {
  103. "yabbawhap version 1.00, March 19, 1991." ,
  104. "Placed into the public domain by Daniel J. Bernstein." ,
  105. "" ,
  106. "There is no copyright on this code. You may use it in any way you want." ,
  107. "" ,
  108. "If you have questions about this program or about this notice, or if you" ,
  109. "have a patch that you don't mind sharing, please contact me on the Internet" ,
  110. "at brnstnd@nyu.edu." ,
  111. 0 } ;
  112.  
  113. char *unsqwarranty[] = {
  114. "Daniel J. Bernstein disclaims all warranties to the extent permitted" ,
  115. "by applicable law. He is not and shall not be liable for any damages" ,
  116. "arising from the use of this program. This disclaimer shall be governed" ,
  117. "by the laws of the state of New York." ,
  118. "" ,
  119. "In other words, use this program at your own risk." ,
  120. "" ,
  121. "If you have questions about this program or about this disclaimer of" ,
  122. "warranty, please feel free to contact me at brnstnd@nyu.edu on the" ,
  123. "Internet." ,
  124. 0 } ;
  125.  
  126. char *unsqusage[] = {
  127. #ifdef WHAP
  128. "Usage: unwhap [ -mmem ] [ -qQvrRACHUVW ]" ,
  129. "Help:  unwhap -H" ,
  130. #else
  131. "Usage: unyabba [ -mmem ] [ -qQvrRACHUVW ]" ,
  132. "Help:  unyabba -H" ,
  133. #endif
  134. 0 } ;
  135.  
  136. char *unsqhelp[] = {
  137. #ifdef WHAP
  138. "unwhap uncompresses its input, which must have come from whap, to its output." ,
  139. "unwhap -ACHUVW: print authorship notice, copyright notice, this notice," ,
  140. "                short usage summary, version number, disclaimer of warranty" ,
  141. "unwhap [ -mmem ] [ -qQvrR ]: uncompress" ,
  142. #else
  143. "unyabba uncompresses its input, which must have come from yabba, to its output." ,
  144. "unyabba -ACHUVW: print authorship notice, copyright notice, this notice," ,
  145. "                 short usage summary, version number, disclaimer of warranty" ,
  146. "unyabba [ -mmem ] [ -qQvrR ]: uncompress" ,
  147. #endif
  148. "-mmem: set block size to mem (default: factory 65533 chars, here %d)" ,
  149. "-r: accept randomized input without a header" ,
  150. "-R: complain about randomized input; check for header" ,
  151. "-q: quiet (nothing on standard error)" ,
  152. "-Q: normal level of verbosity" ,
  153. "-v: verbose: like  In: 106253 chars  Out: 312163 chars  Whapped from: 34%%" ,
  154. "" ,
  155. #ifdef WHAP
  156. "The whap that wrote the input must have the same settings of -m and -r/-R." ,
  157. #else
  158. "The yabba that wrote the input must have the same settings of -m and -r/-R." ,
  159. #endif
  160. "" ,
  161. "If you have questions about or suggestions for yabbawhap, please feel free" ,
  162. "to contact the author, Daniel J. Bernstein, at brnstnd@nyu.edu on the" ,
  163. "Internet." ,
  164. 0 } ;
  165.