Переименование проектов / Renaming of projects
This commit is contained in:
parent
da61a9bf7c
commit
beb237fd4e
44 changed files with 6588 additions and 9 deletions
17
basic-geometry-test/main.c
Normal file
17
basic-geometry-test/main.c
Normal file
|
@ -0,0 +1,17 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "geometry_test.h"
|
||||
#include "fp32_vector2_test.h"
|
||||
|
||||
#define PROGRAM_RESULT_SUCCESS 0
|
||||
#define PROGRAM_RESULT_FAILED 1
|
||||
|
||||
int main()
|
||||
{
|
||||
if (test_bg_fp32_vector2() == TEST_RESULT_FAILED) {
|
||||
return PROGRAM_RESULT_FAILED;
|
||||
}
|
||||
|
||||
return PROGRAM_RESULT_SUCCESS;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue