Files
ltypes/test/test.c

22 lines
566 B
C
Raw Normal View History

2026-06-09 07:23:41 -05:00
#include <stdio.h>
2026-06-14 07:27:17 -05:00
#define L_TYPES_AUTHOR "Lucielle <luci@git.lunarware.tech"
#define L_TYPES_REPO "https://git.lunarware.tech/lucielle/ltypes.git"
2026-07-10 04:18:51 -05:00
#define L_TYPES_VERSION "0.2.0"
2026-06-14 07:27:17 -05:00
#define L_TYPES_LICENSE "GNU GPL v3"
2026-06-09 07:23:41 -05:00
2026-06-10 09:06:08 -05:00
int test_l_array();
2026-07-10 04:18:51 -05:00
int test_l_string();
2026-06-09 07:23:41 -05:00
int main(void) {
printf("AUTHOR: %s\n", L_TYPES_AUTHOR);
printf("REPO: %s\n", L_TYPES_REPO);
printf("VERSION: %s\n", L_TYPES_VERSION);
printf("LICENSE: %s\n\n", L_TYPES_LICENSE);
test_l_array();
test_l_string();
2026-06-10 09:06:08 -05:00
printf("Test Completed Succefully.\n");
return 0;
2026-06-09 07:23:41 -05:00
}