摘要:
1 #include 2 #include 3 #include 4 5 int Index_BF(const char *dst,const char *src,int pos) 6 { 7 int i=pos,j=0; 8 while(dst[i+j]!='\0'&&src[j]!='\0') 9 { 10 if(dst[i+j]=... 阅读全文
摘要:
Makefile 阅读全文