File: ws_codepoints.h

package info (click to toggle)
wireshark 4.6.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 351,436 kB
  • sloc: ansic: 3,103,613; cpp: 129,736; xml: 100,978; python: 56,510; perl: 24,575; sh: 5,874; lex: 4,383; pascal: 4,304; makefile: 164; ruby: 113; objc: 91; tcl: 35
file content (24 lines) | stat: -rw-r--r-- 514 bytes parent folder | download | duplicates (3)
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__ */