Files
ltypes/test/test.c

22 lines
583 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"
#define L_TYPES_VERSION "0.1.0"
#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-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);
2026-06-10 09:06:08 -05:00
int RETURN_CODE = 0;
2026-06-09 07:23:41 -05:00
2026-06-10 09:06:08 -05:00
RETURN_CODE += test_l_array();
printf("\nError Total: %d\n", RETURN_CODE);
return RETURN_CODE;
2026-06-09 07:23:41 -05:00
}