This directory contains examples of lcrzo.

**********************
* The library lcrzo has to be compiled before compiling lcrzoex.
**********************

Each file lcrzoex_000iii.c can be compiled alone.
You just have to :
 - copy lcrzoex_000iii.c to myprog.c
 - edit myprog.c in order to :
    - rename
        int lcrzoex_000iii_main(int argc, char *argv[]);
      to
        int main(int argc, char *argv[]);
    - modify what you desire
 - compile with "make myprog"


+++++++++++++++++++++
Note about examples :
+++++++++++++++++++++

Algorithms are not "perfects".
Indeed, I choose to create easy to unterstand programs, 
instead of creating correct, but complicated, examples.

The objective of these examples is to teach you how to use lcrzo.

So, in these examples,
 - all error codes are not tested,
 - memory is not freed on error,
 - all cases are not tested,
 - etc.

