mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 11:14:58 -06:00
14 lines
325 B
C
14 lines
325 B
C
// StringUtils.h
|
|
|
|
#ifndef __STRING_UTILS_H
|
|
#define __STRING_UTILS_H
|
|
|
|
#include "../../../Common/MyString.h"
|
|
|
|
void SplitStringToTwoStrings(const UString &src, UString &dest1, UString &dest2);
|
|
|
|
void SplitString(const UString &srcString, UStringVector &destStrings);
|
|
UString JoinStrings(const UStringVector &srcStrings);
|
|
|
|
#endif
|