wireshark/include/ws_codepoints.h
Guy Harris 1c9c1b5100 Add a #define for REPLACEMENT CHARACTER and use it.
Add UNICODE_REPLACEMENT_CHARACTER as a #define for the Unicode
REPLACEMENT CHARACTER code point (0x00FFFD), and use that instead of
0xfffd/0xFFFD/0x00FFFD in cases where that value refers to REPLACEMENT
CHARACTER.
2022-10-16 23:36:12 +00:00

25 lines
514 B
C

/* ws_codepoints.h
* Unicode code point definitions
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 2006 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __WS_CODEPOINTS_H__
#define __WS_CODEPOINTS_H__
/**
* @file
* Unicode code points.
*
* (See chapter 2 of the Unicode standard for an explanation of what
* "characters" and "code points" are.)
*/
#define UNICODE_REPLACEMENT_CHARACTER 0x00FFFD
#endif /* __WS_CODEPOINTS_H__ */