930503-1.c   [plain text]


f (const char *s, char *d, unsigned l)
{
  if (0)
    while (1);
  else
    while (--l >= 0)
      *d++ = *s++;
}