/
redgpu
/
bullet
Обзор
Документация
Войти
/
redgpu
/
bullet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/Bullet2/Source/TestList.h
28 строк
377 B
erwincoumans
Code-style consistency improvement:
24 сен 2018, 00:17
24 сен 2018, 00:17
ab8f169
Код
Авторство
О чём код?
// // TestList.h // BulletTest // // Copyright (c) 2011 Apple Inc. // #ifndef BulletTest_TestList_h #define BulletTest_TestList_h #ifdef __cplusplus extern "C" { #endif typedef struct TestDesc { const char *name; int (*test_func)(void); // return 0 for success, non-zero for failure } TestDesc; extern TestDesc gTestList[]; #ifdef __cplusplus } #endif #endif