From 277d1edfa17bf3719d90ddbac8e31f6181e952c3 Mon Sep 17 00:00:00 2001 From: Sandeep Gupta Date: Sun, 18 Jun 2017 23:55:40 +0530 Subject: First commit --- src/c/matrixOperations/jmat/testJmat.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/c/matrixOperations/jmat/testJmat.c (limited to 'src/c/matrixOperations/jmat/testJmat.c') diff --git a/src/c/matrixOperations/jmat/testJmat.c b/src/c/matrixOperations/jmat/testJmat.c new file mode 100644 index 00000000..853f5236 --- /dev/null +++ b/src/c/matrixOperations/jmat/testJmat.c @@ -0,0 +1,20 @@ +#include +#include +#include "jmat.h" + +static void sjmataTest(void){ + +} + + +static void djmataTest(void){ + +} + + + +int main(void){ + sjmataTest(); + djmataTest(); + return 0; +} -- cgit