mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-17 09:35:46 +01:00
21 lines
362 B
C
21 lines
362 B
C
// Copyright (c) 2025 Quinn
|
|
// Licensed under the MIT Licence. See LICENSE for details
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "test.h"
|
|
|
|
int main(void) {
|
|
/*
|
|
// tests that should be performed
|
|
testdat tests[] = {
|
|
};
|
|
|
|
// get test count
|
|
size_t n = sizeof(tests) / sizeof(tests[0]);
|
|
*/
|
|
|
|
return exec_tests(NULL, 0);
|
|
// return exec_tests(tests, n);
|
|
}
|