summaryrefslogtreecommitdiff
path: root/test/misc.c
diff options
context:
space:
mode:
authorSteven G. Johnson <stevenj@alum.mit.edu>2018-04-27 08:57:54 -0400
committerSteven G. Johnson <stevenj@alum.mit.edu>2018-04-27 08:57:54 -0400
commitd050c4636aa4feaa3ce8a4c064750d7bb919fb59 (patch)
tree6adb5ff71de6f200b905bc1a62cdfd3b8d7cb1af /test/misc.c
parent53d7968055d8c89769633afa3990f59abe53122f (diff)
downloadlibutf8proc-d050c4636aa4feaa3ce8a4c064750d7bb919fb59.tar.gz
libutf8proc-d050c4636aa4feaa3ce8a4c064750d7bb919fb59.tar.bz2
make internal function static
Diffstat (limited to 'test/misc.c')
-rw-r--r--test/misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/misc.c b/test/misc.c
index 707c1a0..a19783a 100644
--- a/test/misc.c
+++ b/test/misc.c
@@ -2,7 +2,7 @@
#include "tests.h"
-void issue128(void) /* #128 */
+static void issue128(void) /* #128 */
{
utf8proc_uint8_t input[] = {0x72, 0xcc, 0x87, 0xcc, 0xa3, 0x00}; /* "r\u0307\u0323" */
utf8proc_uint8_t nfc[] = {0xe1, 0xb9, 0x9b, 0xcc, 0x87, 0x00}; /* "\u1E5B\u0307" */