From 4c5434d76eb040d91c6159f46c6beaf37d9fa098 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 25 May 2020 02:00:16 -0400 Subject: [PATCH] More TODOs. --- test/utf8.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/utf8.c b/test/utf8.c index 4838e897..7ba58658 100644 --- a/test/utf8.c +++ b/test/utf8.c @@ -3,6 +3,7 @@ // Do not put any test cases in this file; they will not be run. +// TODO specify these hex constants in a signedness-safe way const char testUTF8Empty[] = { 0 }; const char testUTF8ASCIIOnly[] = { 0x74, 0x65, 0x73, 0x74, 0 }; const char testUTF8WithTwoByte[] = { 0x74, 0xC3, 0xA9, 0x73, 0x74, 0 };