add string type
This commit is contained in:
@@ -2,10 +2,11 @@
|
||||
|
||||
#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.1"
|
||||
#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);
|
||||
@@ -16,6 +17,7 @@ int main(void) {
|
||||
int RETURN_CODE = 0;
|
||||
|
||||
RETURN_CODE += test_l_array();
|
||||
RETURN_CODE += test_l_string();
|
||||
|
||||
printf("\nError Total: %d\n", RETURN_CODE);
|
||||
return RETURN_CODE;
|
||||
|
||||
Reference in New Issue
Block a user