Source: Fix -Wmissing-variable-declarations warning

This commit is contained in:
Sean McBride
2021-11-22 20:10:39 -05:00
parent 29ffa5f48c
commit 4b548c1028
2 changed files with 3 additions and 4 deletions

View File

@@ -9,11 +9,8 @@
# include <windows.h>
# undef max
# include "cmsys/Encoding.hxx"
#endif
#if defined(_WIN32)
/* Number of leading ones before a zero in the byte (see cm_utf8.c). */
extern "C" unsigned char const cm_utf8_ones[256];
# include "cm_utf8.h"
#endif
codecvt::codecvt(Encoding e)

View File

@@ -6,6 +6,8 @@
extern "C" {
#endif
extern unsigned char const cm_utf8_ones[256];
/** Decode one UTF-8 character from the input byte range. On success,
stores the unicode character number in *pc and returns the first
position not extracted. On failure, returns 0. */