diff options
author | Jasper | 2025-08-31 15:47:31 +0200 |
---|---|---|
committer | Jasper | 2025-08-31 15:47:31 +0200 |
commit | 7d763b5778cfbf81ee420558d13e8acbb66d860a (patch) | |
tree | e67fa668944e79526cbdf7b6e8eed6e8d81ebdb6 /debug.c |
Initial commit
Diffstat (limited to 'debug.c')
-rw-r--r-- | debug.c | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ +#include <time.h> +#include <stdlib.h> +#include <stdio.h> + +#include "tests.h" +#include "matrix.h" + +int main() +{ + srand(time(NULL)); + run_tests(); +} |