mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
12 lines
269 B
C
Executable File
12 lines
269 B
C
Executable File
// StringUtils.h
|
|
|
|
#ifndef ZIP7_INC_STRING_UTILS_H
|
|
#define ZIP7_INC_STRING_UTILS_H
|
|
|
|
#include "../../../Common/MyString.h"
|
|
|
|
void SplitStringToTwoStrings(const UString &src, UString &dest1, UString &dest2);
|
|
// UString JoinStrings(const UStringVector &srcStrings);
|
|
|
|
#endif
|