-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
316cc71
commit 160a50d
Showing
3 changed files
with
49 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/// "Horizontal Tab" control character, common name. | ||
const int charcodeTab = 0x09; | ||
|
||
/// "Line feed" control character. | ||
const int charcodeLf = 0x0A; | ||
|
||
// Visible characters. | ||
|
||
/// Space character. | ||
const int charcodeSpace = 0x20; | ||
|
||
/// Character `"`. | ||
const int charcodeDoubleQuote = 0x22; | ||
|
||
/// Character `#`. | ||
const int charcodeHash = 0x23; | ||
|
||
/// Character `$`. | ||
const int charcodeDollar = 0x24; | ||
|
||
/// Character `'`. | ||
const int charcodeSingleQuote = 0x27; | ||
|
||
/// Character `\`. | ||
const int charcodeBackslash = 0x5C; | ||
|
||
/// Character `` ` ``. | ||
const int charcodeBackquote = 0x60; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters