aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/DBCS.h
blob: ff3f9f22f8aa6541c3b9dde4ec179b3a044e8a87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Scintilla source code edit control
/** @file DBCS.h
 ** Functions to handle DBCS double byte encodings like Shift-JIS.
 **/
// Copyright 2017 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.

#ifndef DBCS_H
#define DBCS_H

namespace Scintilla {

bool DBCSIsLeadByte(int codePage, char ch) noexcept;

}

#endif