2026-06-09 07:23:41 -05:00
|
|
|
#include <stdio.h>
|
2026-06-10 09:06:08 -05:00
|
|
|
#include "../include/version.h"
|
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
|
|
|
}
|