aboutsummaryrefslogtreecommitdiff
path: root/tests/tests.c
diff options
context:
space:
mode:
authoraxtloss <axtlos@disroot.org>2024-10-17 02:39:27 +0200
committeraxtloss <axtlos@disroot.org>2024-10-17 02:39:27 +0200
commit7f0fc08c05142f9f70cb05a4b1b1d6f0b1a3279b (patch)
tree0c1934e2d6940a99e97f2adefdac46cd3b9e384d /tests/tests.c
parentb2182396df5d99ff5c26161aaffa5ced879742c5 (diff)
downloadextlib-7f0fc08c05142f9f70cb05a4b1b1d6f0b1a3279b.tar.gz
extlib-7f0fc08c05142f9f70cb05a4b1b1d6f0b1a3279b.tar.bz2
Add strfmt
Diffstat (limited to 'tests/tests.c')
-rw-r--r--tests/tests.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/tests.c b/tests/tests.c
index 73dd1af..295cbc8 100644
--- a/tests/tests.c
+++ b/tests/tests.c
@@ -7,6 +7,7 @@
#include "test_replace_str.c"
#include "test_strlwr_strupr.c"
#include "test_trim.c"
+#include "test_strfmt.c"
inline void
tests_entrypoint ()
@@ -19,4 +20,5 @@ tests_entrypoint ()
register_test (test_replace_str_t ());
register_test (test_strlwr_strupr_t ());
register_test (test_trim_t ());
+ register_test (test_strfmt_t ());
}