diff options
author | Denis Ovsienko <denis@ovsienko.info> | 2021-08-10 13:49:21 +0100 |
---|---|---|
committer | Denis Ovsienko <denis@ovsienko.info> | 2021-08-10 13:49:21 +0100 |
commit | 9268955286623ba1c255fae4df5bc75c7aa043b0 (patch) | |
tree | 40b8945c70e9f6944fa8f2dece5e2a640b585b34 /charconv.h | |
parent | a9442dd27261971308287d67e12047bdd150f3c1 (diff) |
Refine the #ifndef guard in charconv.h. [skip ci]
Diffstat (limited to 'charconv.h')
-rw-r--r-- | charconv.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -32,8 +32,8 @@ * SUCH DAMAGE. */ -#ifndef charonv_h -#define charonv_h +#ifndef charconv_h +#define charconv_h #ifdef _WIN32 extern wchar_t *cp_to_utf_16le(UINT codepage, const char *cp_string, DWORD flags); @@ -41,4 +41,4 @@ extern char *utf_16le_to_cp(UINT codepage, const wchar_t *utf16le_string); extern void utf_8_to_acp_truncated(char *); #endif -#endif +#endif /* charconv_h */ |