opt: optimize code struct

This commit is contained in:
DreamMaoMao 2025-09-28 21:12:16 +08:00
parent a220a3060f
commit 32476f366b
3 changed files with 5 additions and 4 deletions

View file

@ -374,9 +374,9 @@ int parse_circle_direction(const char *str) {
// 根据转换后的小写字符串返回对应的枚举值
if (strcmp(lowerStr, "next") == 0) {
return 1;
return NEXT;
} else {
return -1;
return PREV;
}
}