home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 2: PC / frozenfish_august_1995.bin / bbs / d07xx / d0744.lha / FO2 / Sources_FO2 / opts.c < prev    next >
C/C++ Source or Header  |  1992-10-12  |  628b  |  43 lines

  1. #include "defs.h"
  2.  
  3. Prototype WBench(BYTE flag);
  4. Prototype ComLineInt(BYTE flag);
  5. Prototype NoFormat(BYTE flag);
  6. Prototype forFDir(BYTE flag);
  7. Prototype Check(BYTE flag);
  8.  
  9. /* Les options. */
  10.  
  11. WBench(flag)
  12. BYTE flag;
  13. {
  14.     CLI=!flag;
  15. /*    printf("in WBench, CLI set to %d\n",!flag);*/
  16. }
  17.  
  18. ComLineInt(flag)
  19. BYTE flag;
  20. {
  21.     CLI=flag;
  22. /*    printf("in ComLineInt, CLI set to %d\n",flag);*/
  23. }
  24.  
  25. NoFormat(flag)
  26. BYTE flag;
  27. {
  28.     VarAdr->Format=!flag;
  29. /*    printf("in NoFormat, Format set to %d\n",VarAdr->Format);*/
  30. }
  31.  
  32. forFDir(flag)
  33. BYTE flag;
  34. {
  35.     FLnog=flag;
  36. /*     printf("in forFDir, FLnog set to %d\n",flag);*/
  37. }
  38.  
  39. Check(flag)
  40. BYTE flag;
  41. {
  42.     CHECK=flag;
  43. }