diff options
| author | manuel <manuel@mausz.at> | 2013-02-04 00:08:53 +0100 |
|---|---|---|
| committer | manuel <manuel@mausz.at> | 2013-02-04 00:08:53 +0100 |
| commit | 69aec538b456402170dc723af417ba5c05389c32 (patch) | |
| tree | e6f34c543f17c6392447ea337b2e2868212424d1 /fmt_str.c | |
| download | qmail-69aec538b456402170dc723af417ba5c05389c32.tar.gz qmail-69aec538b456402170dc723af417ba5c05389c32.tar.bz2 qmail-69aec538b456402170dc723af417ba5c05389c32.zip | |
qmail 1.03 import
Diffstat (limited to 'fmt_str.c')
| -rw-r--r-- | fmt_str.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/fmt_str.c b/fmt_str.c new file mode 100644 index 0000000..48930cf --- /dev/null +++ b/fmt_str.c | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | #include "fmt.h" | ||
| 2 | |||
| 3 | unsigned int fmt_str(s,t) | ||
| 4 | register char *s; register char *t; | ||
| 5 | { | ||
| 6 | register unsigned int len; | ||
| 7 | char ch; | ||
| 8 | len = 0; | ||
| 9 | if (s) { while (ch = t[len]) s[len++] = ch; } | ||
| 10 | else while (t[len]) len++; | ||
| 11 | return len; | ||
| 12 | } | ||
