mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2026-03-01 01:40:19 -05:00
opt: optimize code struct
This commit is contained in:
parent
365854ccf6
commit
a06552b670
3 changed files with 5 additions and 4 deletions
|
|
@ -391,9 +391,9 @@ int parse_circle_direction(const char *str) {
|
|||
|
||||
// 根据转换后的小写字符串返回对应的枚举值
|
||||
if (strcmp(lowerStr, "next") == 0) {
|
||||
return 1;
|
||||
return NEXT;
|
||||
} else {
|
||||
return -1;
|
||||
return PREV;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue