summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/matrixOperations/jmat/testJmat.c
diff options
context:
space:
mode:
Diffstat (limited to '2.3-1/src/c/matrixOperations/jmat/testJmat.c')
-rw-r--r--2.3-1/src/c/matrixOperations/jmat/testJmat.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/2.3-1/src/c/matrixOperations/jmat/testJmat.c b/2.3-1/src/c/matrixOperations/jmat/testJmat.c
new file mode 100644
index 00000000..853f5236
--- /dev/null
+++ b/2.3-1/src/c/matrixOperations/jmat/testJmat.c
@@ -0,0 +1,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;
+}