analyze.h 287 B

1234567891011
  1. #include <stdio.h>
  2. #include "buffer.h"
  3. /**
  4. * Analyse the data
  5. *
  6. * @param buffer data to analyze
  7. * @param output output to render the result
  8. * @param all if false the analyze stops at the first error encoutered
  9. */
  10. void analyse(BYTE_BUFFER buffer, FILE* output, unsigned char all);