2020年11月13日

摘要: FILE* fp=fopen(sFileName,"rb"); fseek(fp,0,SEEK_END); int len = ftell(fp); fseek(fp,0,SEEK_SET); char* s = (char*)malloc(len); fread(s,1,len,fp); fclo 阅读全文
posted @ 2020-11-13 14:32 lydstory 阅读(225) 评论(0) 推荐(0)

导航