22 lines
566 B
C
22 lines
566 B
C
#include <stdio.h>
|
|
|
|
#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.2.0"
|
|
#define L_TYPES_LICENSE "GNU GPL v3"
|
|
|
|
int test_l_array();
|
|
int test_l_string();
|
|
|
|
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();
|
|
|
|
printf("Test Completed Succefully.\n");
|
|
return 0;
|
|
} |