fmt_str.c
author tomas@localhost
Thu, 01 Nov 2007 14:46:11 +0100
changeset 0 c045670f36e9
permissions -rw-r--r--
Imported queue-fix-1.4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     1
#include "fmt.h"
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     2
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     3
unsigned int fmt_str(s,t)
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     4
register char *s; register char *t;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     5
{
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     6
  register unsigned int len;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     7
  char ch;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     8
  len = 0;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     9
  if (s) { while (ch = t[len]) s[len++] = ch; }
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    10
  else while (t[len]) len++;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    11
  return len;
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    12
}