diff options
author | Sandeep Gupta | 2017-06-18 23:55:40 +0530 |
---|---|---|
committer | Sandeep Gupta | 2017-06-18 23:55:40 +0530 |
commit | 277d1edfa17bf3719d90ddbac8e31f6181e952c3 (patch) | |
tree | 0661f1f52af0a0fd654edd4984c30e57037303c6 /src/c/matrixOperations/jmat/testJmat.c | |
download | Scilab2C_fossee_old-277d1edfa17bf3719d90ddbac8e31f6181e952c3.tar.gz Scilab2C_fossee_old-277d1edfa17bf3719d90ddbac8e31f6181e952c3.tar.bz2 Scilab2C_fossee_old-277d1edfa17bf3719d90ddbac8e31f6181e952c3.zip |
First commit
Diffstat (limited to 'src/c/matrixOperations/jmat/testJmat.c')
-rw-r--r-- | src/c/matrixOperations/jmat/testJmat.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/c/matrixOperations/jmat/testJmat.c b/src/c/matrixOperations/jmat/testJmat.c new file mode 100644 index 0000000..853f523 --- /dev/null +++ b/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; +} |