Files
ltypes/test/test.c

18 lines
412 B
C

#include <stdio.h>
#include "../include/version.h"
int test_l_array();
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);
int RETURN_CODE = 0;
RETURN_CODE += test_l_array();
printf("\nError Total: %d\n", RETURN_CODE);
return RETURN_CODE;
}