
  SimpleC2PB 0.7 Readme
  ----------------------

  SimpleC2PB is a very basic tool for translation of C code to PowerBASIC.
  
  You just have to put filename as parameter to the EXE,
  you can enter it after launching of the program and the rest is done automatically.

  You can see progress of conversion represented by growing number of dots on screen and
  when the work is done, the converted file is saved as INC or BAS file to 
  simpleC2PB_ConvertedFiles subdirectory.

  The converter preserves content on lines, so line 155 of C source will be always
  translated on line 155 of converted BAS file. This is useful when checking how
  much accurate the conversion was.

  Bugfixes from 0.6

    *Improved IF / ELSEIF / ELSE / END IF handling
    *Improved commenting of code

  Features:

    * Replaces "}" with appropiate END IF, END SELECT, WEND, LOOP ...
    * REMs out all lines beetween "/*" and "*/", also REMs out lines with "//"
    * Converts #define to MACROs
    * Rebuilts variable declaration
    * Autodetects FUNCTIONS and SUBs
    * Replaces "return 2" with FUNCTION = 2 : EXIT FUNCTION
    * ... it does some other less important things too

  Hope you will find this program more helpful than destructive ;)

  Petr