File: correlation.h

package info (click to toggle)
dhex 0.69-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 512 kB
  • sloc: ansic: 5,482; makefile: 71; sh: 46
file content (11 lines) | stat: -rw-r--r-- 326 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
#ifndef CORRELATION_H
#define	CORRELATION_H
#include "machine_type.h"
#include "buffers.h"
#include "output.h"
#include "datatypes.h"

void find_correlation(tOutput* output,tCorrelation* correlation,tBuffer* buf1,tBuffer* buf2,tInt64* cursorpos1,tInt64* cursorpos2);
void clear_correlation(tCorrelation* correlation);

#endif