30 SECONDS UNCC HOWTO
---------------------
In order to test uncc functionalities, we suggest to take advantage of
.c files in test directory within the package. With those programs you
may test all the different aspects of uncc.

There are 4 simple steps to follow (let's assume you want to decompile
basic_function_call.c, you have already compiled uncc, and you are in
the main uncc directory):

1. cd test
2. gcc basic_function_call.c -o basic_function_call
3. strip --strip-all basic_function_call
4. ./dasm.pl basic_function_call basic_function_call.dasm
5. ../uncc basic_function_call.dasm

Everything goes to stdout and you should see the C code relative to
the decompiled program.


GOING FASTER ;)
---------------
The steps from 3 to 5 have been coded in decompile.sh script, so you
may just compile your target and use that script for decompilation.
