Базовая версия библиотеки. Версия 0.2.0-dev
This commit is contained in:
parent
b086af7f66
commit
6a56e85052
39 changed files with 6200 additions and 1 deletions
17
test/main.c
Normal file
17
test/main.c
Normal file
|
@ -0,0 +1,17 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "geometry_test.h"
|
||||
#include "sp_vector2_test.h"
|
||||
|
||||
#define PROGRAM_RESULT_SUCCESS 0
|
||||
#define PROGRAM_RESULT_FAILED 1
|
||||
|
||||
int main()
|
||||
{
|
||||
if (test_sp_vector2() == TEST_RESULT_FAILED) {
|
||||
return PROGRAM_RESULT_FAILED;
|
||||
}
|
||||
|
||||
return PROGRAM_RESULT_SUCCESS;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue