// Scintilla source code edit control /** @file DBCS.h ** Functions to handle DBCS double byte encodings like Shift-JIS. **/ // Copyright 2017 by Neil Hodgson // The License.txt file describes the conditions under which this software may be distributed. #ifndef DBCS_H #define DBCS_H #ifdef SCI_NAMESPACE namespace Scintilla { #endif bool DBCSIsLeadByte(int codePage, char ch); #ifdef SCI_NAMESPACE } #endif #endif