blob: 338cef5a4923fc0f736323be4e8aa75af2bb95cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* 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__ */
|