摘要: 1 //str.h 2 3 #ifndef STR_H 4 #define STR_H 5 #define OK 1 6 #define ERROR 0 7 typedef int Status; 8 typedef struct { 9 char *ch; 10 int length; 11 }HString; 12 13 Status StrAssign... 阅读全文
posted @ 2018-12-31 10:48 shadowgully 阅读(207) 评论(0) 推荐(0) 编辑