mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
14 lines
314 B
C
Executable File
14 lines
314 B
C
Executable File
// StringUtils.h
|
|
|
|
#ifndef __STRINGUTILS_H
|
|
#define __STRINGUTILS_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
|