12 lines
199 B
C
12 lines
199 B
C
|
|
#ifndef _CCR_MATH_H_
|
|
#define _CCR_MATH_H_
|
|
|
|
#include "codecrypt.h"
|
|
|
|
void ccr_mtx_add (int, int, ccr_mtx, ccr_mtx, ccr_mtx);
|
|
void ccr_mtx_multiply (int, int, int, ccr_mtx, ccr_mtx, ccr_mtx);
|
|
|
|
#endif
|
|
|