summaryrefslogtreecommitdiff
path: root/zen/zstring.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <shieldwed@outlook.com>2018-05-09 00:04:33 +0200
committerDaniel Wilhelm <shieldwed@outlook.com>2018-05-09 00:04:33 +0200
commit017e56b81ba735c39c43701f737ac7dde55da7b4 (patch)
treeea7aaaee13a06a702701e2f74f5d390e10ae303e /zen/zstring.h
parent9.4 (diff)
downloadFreeFileSync-017e56b81ba735c39c43701f737ac7dde55da7b4.tar.gz
FreeFileSync-017e56b81ba735c39c43701f737ac7dde55da7b4.tar.bz2
FreeFileSync-017e56b81ba735c39c43701f737ac7dde55da7b4.zip
9.5
Diffstat (limited to 'zen/zstring.h')
-rwxr-xr-xzen/zstring.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/zen/zstring.h b/zen/zstring.h
index 273efd2f..33f48990 100755
--- a/zen/zstring.h
+++ b/zen/zstring.h
@@ -72,6 +72,17 @@ S ciReplaceCpy(const S& str, const T& oldTerm, const U& newTerm);
+//common unicode sequences
+const wchar_t EM_DASH = L'\u2014';
+const wchar_t* const SPACED_DASH = L" \u2013 "; //using 'EN DASH'
+const wchar_t LTR_MARK = L'\u200E'; //UTF-8: E2 80 8E
+const wchar_t RTL_MARK = L'\u200F'; //UTF-8: E2 80 8F
+const wchar_t ELLIPSIS = L'\u2026'; //"..."
+
+
+
+
+
//################################# inline implementation ########################################
inline
bgstack15