Import source to librtti

Summary:

- Import initial source

Test Plan:
NA
This commit is contained in:
Rongsong Shen 2026-01-29 17:22:53 +08:00
commit c8c1749347
23 changed files with 969 additions and 0 deletions

29
testsuite/test.c Normal file
View file

@ -0,0 +1,29 @@
#include <stdio.h>
#include <stdlib.h>
#include <unity/unity.h>
void setUp(void)
{
printf("\n");
return;
}
void tearDown(void)
{
printf("\n");
return;
}
extern void test_iter(void);
#define TEST(x) x()
int main(int argc, char* argv[])
{
UNITY_BEGIN();
TEST(test_iter);
return UNITY_END();
}