mirror of
https://gitflic.ru/project/npo_rbs/repka-os_kernel.git
synced 2025-04-17 01:34:22 +00:00
15 lines
303 B
C
15 lines
303 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#ifndef _NLS_UCS2_DATA_H
|
|
#define _NLS_UCS2_DATA_H
|
|
|
|
struct UniCaseRange {
|
|
wchar_t start;
|
|
wchar_t end;
|
|
signed char *table;
|
|
};
|
|
|
|
extern signed char NlsUniUpperTable[512];
|
|
extern const struct UniCaseRange NlsUniUpperRange[];
|
|
|
|
#endif /* _NLS_UCS2_DATA_H */
|