void substr(u8 *str1,u8 *str2,u32 start,u32 end) { int i; for (i=start;i<=end;i++) str1[i]=str2[i-start]; }