m3dev

cortex m3 debug tools -- superceded by mdebug
git clone http://frotz.net/git/m3dev.git
Log | Files | Refs | README | LICENSE

strcpy.c (60B)


      1 
      2 void strcpy(char *d, char *s) {
      3 	while ((*d++ = *s++)) ;
      4 }