Return a format->split even at the end of the string
这个提交包含在:
父节点
8a8eab89ff
当前提交
311795bf41
8
format.c
8
format.c
@ -66,7 +66,13 @@ static const wchar_t Stops[] = {
|
||||
|
||||
bool formatParse(struct Format *format, const wchar_t *split) {
|
||||
format->str += format->len;
|
||||
if (!format->str[0]) return false;
|
||||
if (!format->str[0]) {
|
||||
if (split == format->str && !format->split) {
|
||||
format->split = true;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
const wchar_t *init = format->str;
|
||||
switch (format->str[0]) {
|
||||
|
正在加载...
x
在新工单中引用
屏蔽一个用户