summaryrefslogtreecommitdiff
path: root/src/c/matrixOperations/jmat/testJmat.c
blob: 853f5236133554a18a2a8133a892e69d5e9a18b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <assert.h>
#include <stdio.h>
#include "jmat.h"

static void sjmataTest(void){

}


static void djmataTest(void){

}



int main(void){
	sjmataTest();
	djmataTest();
	return 0;
}