moved tim.h to include/

This commit is contained in:
2026-01-09 02:35:38 +05:00
parent f7b4809db8
commit 025cede850
12 changed files with 26 additions and 28 deletions

View File

@@ -1,6 +1,6 @@
// Test string functions.
#include "../tim.h"
#include "tim.h"
#define U(s) (uint8_t*)(""s), (sizeof(s) - 1)
#define TEST(t) printf("\33[3%s\33[0m %s\n", (t) ? "2mpass" : "1mfail", #t)
@@ -68,4 +68,3 @@ int main(void) {
TEST(is_wide_perhaps(U("")) == true);
TEST(is_wide_perhaps(U("𐍈")) == true);
}