aboutsummaryrefslogtreecommitdiffstats
path: root/modules/testvm
diff options
context:
space:
mode:
Diffstat (limited to 'modules/testvm')
0 files changed, 0 insertions, 0 deletions
ka9_0&id=2f43493d195d5d865d63f4506c95efff8e7b9ff7'>dietlibc/lib/strcpy.c
blob: 49693c30d70e896863cb31b2cc4268cde36ebfa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "dietfeatures.h"

char* strcpy(register char* s,register const char* t)
{
  char *dest=s;
  for (;;) {
    if (!(*s = *t)) return dest; ++s; ++t;
#ifndef WANT_SMALL_STRING_ROUTINES
    if (!(*s = *t)) return dest; ++s; ++t;
    if (!(*s = *t)) return dest; ++s; ++t;
    if (!(*s = *t)) return dest; ++s; ++t;
#endif
  }
}