codecrypt/lib/math.h

12 lines
221 B
C

#ifndef _CCR_MATH_H_
#define _CCR_MATH_H_
#include "codecrypt.h"
void ccr_mtx_add(int, int, const ccr_mtx, const ccr_mtx, ccr_mtx);
void ccr_mtx_multiply(int, int, int, const ccr_mtx, const ccr_mtx, ccr_mtx);
#endif