Skip to content

Commit 1ba059f

Browse files
committed
Add new character consts
1 parent 7373219 commit 1ba059f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Src/UConsts.pas

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,12 @@ interface
2929
CR = #13; // carriage return character
3030
SUB = #26; // ASCII SUB character
3131
ESC = #27; // escape character
32+
3233
SINGLEQUOTE = ''''; // single quote character
3334
DOUBLEQUOTE = '"'; // double quote character
35+
AMPERSAND = '&'; // ampersand character
36+
GT = '>'; // greater-than / closing angle bracket character
37+
LT = '<'; // less-than / opening angle bracket character
3438

3539
CRLF = CR + LF; // carriage return followed by line feed
3640
EOL = CRLF; // end of line character sequence for Windows systems

0 commit comments

Comments
 (0)