Test split string

This commit is contained in:
Takeshi Yokemura
2021-08-15 18:09:58 +09:00
parent 60068f313a
commit b1928a6929
4 changed files with 126 additions and 32 deletions

View File

@ -44,5 +44,10 @@ struct FrameSequenceParser
int minValue,
int maxValue,
ParseError* error);
void splitSegment (const String& input,
SegmentIndexes indexes,
String& beforeRepeat,
String& insideRepeat,
String& afterRelease);
SegmentIndexes findSegment(const String& input);
};