Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stpcpy.c « intl « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0af6c67c8d5a836211bfb939617e290e6e641dd3 (plain)
1
2
3
4
5
6
7
8
9
10
char *
__stpcpy (dest, src)
     char *dest;
     const char *src;
{
  while ((*dest++ = *src++) != '\0')
    /* Do nothing. */ ;
  return dest - 1;
}