PageRenderTime 45ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/libc/strcpy.c

https://github.com/gxliu/m3dev
C | 4 lines | 3 code | 1 blank | 0 comment | 1 complexity | 930aeea4622b2e81c087c1bf33f8bd1b MD5 | raw file
Possible License(s): Apache-2.0
  1. void strcpy(char *d, char *s) {
  2. while ((*d++ = *s++)) ;
  3. }