摘要: static inline bool is_ident_char(char s) { return ((s >= 'a' && s <= 'z') || (s >= 'A' && s <= 'Z') || (s >= '0' && s <= '9') || s == '_' ); } static 阅读全文
posted @ 2023-05-21 07:37 愿得入睡 阅读(64) 评论(0) 推荐(0)