**********
Brainfucker
**********

Brainfucker is a compiler for the brainfuck programming language.  Given a brainfuck input file it will generates output as an executable, assembler source file, or c++ source file depending on what the user specifies.

Install this by compiling:
g++ bf.cpp -o brainfucker

Usage:
./brainfucker -i input_file_name -t type_of_output -o output_file_name
Allowable output types are: a (assembler), c++, e (executable)

This is my first (alpha) release. If you find any errors, want to add new features, or can optimize my code, feel free to do so.  That.s what GNU/GPL is for.

Here are some brainfuck related links:
http://www.muppetlabs.com/~breadbox/bf/
http://esoteric.sange.fi/brainfuck/
http://koeln.ccc.de/prozesse/zombies/brainfuck/index.en.xml
