- Convert int to long : all int's are converted to long's (default on)
- C Form of equivalence (==) : keep as is / convert to = (default on)
- C Form of not equals (!=) : keep as is / convert to <> (default on)
- C form of AND (&&) : keep as is / otherwise convert to AND (default off)
- C form of OR (||) : keep as is / otherwise convert to OR (default off)
- C form += and -= : keep as is / convert to 'var = var + expression' (default on)
- C form ++ and -- : keep as is / convert to INC and DEC / convert to +=1 and -=1 (default on)
- C comment form (/* & //): keep as is / convert to BASIC form using ' (default on)
- Use DIM VARIABLE AS TYPE form or DIM AS TYPE VARIABLE form, also optional spaces to better align AS TYPE statements in multiple lines (default on)
- Recognize common functions from standard C libraries
(abs, sqr, & sqrt math functions, Button & Random from Mac Toolbox) (default on)
- FutureBASIC keywords uppercased, lowercased, or capitalized (default lowercased)
- Translate Keywords as is : keep FutureBASIC keywords in C code as is (does not apply to FutureBASIC specific keywords: color,len,print,ec,step), if off "_fb" is appended to the end of the keyword. (default on)
- Keep C code as comments to the FutureBASIC code (default off)
- Autodetect undefined constants, i.e. all capital letters, but not in certain locations & skip FILE (default on)
- Insert comments for all cast operations (default on)
- Strip all cast operations (default off)