mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
f3a9b3758e
Use the UCS-2 upper case tables from nls, that are shared with smb. This code in JFS is hard to test, so we're only reusing the same tables (which are identical), not trying to reuse the rest of the helper functions. Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org> Reviewed-by: Dave Kleikamp <dave.kleikamp@oracle.com> Signed-off-by: Steve French <stfrench@microsoft.com>
16 lines
303 B
C
16 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 */
|