• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // StringUtils.h
2 
3 #ifndef ZIP7_INC_STRING_UTILS_H
4 #define ZIP7_INC_STRING_UTILS_H
5 
6 #include "../../../Common/MyString.h"
7 
8 void SplitStringToTwoStrings(const UString &src, UString &dest1, UString &dest2);
9 // UString JoinStrings(const UStringVector &srcStrings);
10 
11 #endif
12