mirror of
https://github.com/intel/isa-l.git
synced 2025-09-08 07:00:54 +02:00

Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com> Signed-off-by: Harry van Haaren <harry.van.haaren@intel.com>
25 lines
679 B
C
25 lines
679 B
C
/**
|
|
* @file isa-l.h
|
|
* @brief Include for ISA-L library
|
|
*/
|
|
|
|
#ifndef _ISAL_H_
|
|
#define _ISAL_H_
|
|
|
|
#define ISAL_MAJOR_VERSION @PROJECT_VERSION_MAJOR@
|
|
#define ISAL_MINOR_VERSION @PROJECT_VERSION_MINOR@
|
|
#define ISAL_PATCH_VERSION @PROJECT_VERSION_PATCH@
|
|
#define ISAL_MAKE_VERSION(maj, min, patch) ((maj) * 0x10000 + (min) * 0x100 + (patch))
|
|
#define ISAL_VERSION ISAL_MAKE_VERSION(ISAL_MAJOR_VERSION, ISAL_MINOR_VERSION, ISAL_PATCH_VERSION)
|
|
|
|
#include <isa-l/erasure_code.h>
|
|
#include <isa-l/gf_vect_mul.h>
|
|
#include <isa-l/raid.h>
|
|
#include <isa-l/crc.h>
|
|
#include <isa-l/crc64.h>
|
|
#include <isa-l/igzip_lib.h>
|
|
#include <isa-l/mem_routines.h>
|
|
#include <isa-l/test.h>
|
|
|
|
#endif //_ISAL_H_
|