Initial commit: ReclassX structured binary editor

This commit is contained in:
sysadmin
2026-02-01 11:37:32 -07:00
commit 0be67c8396
786 changed files with 473499 additions and 0 deletions

View File

@@ -0,0 +1,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