You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
427 B
C
15 lines
427 B
C
24 years ago
|
#include "fmt.h"
|
||
|
|
||
|
unsigned int fmt_strn(char *out,const char *in,unsigned int limit) {
|
||
|
register char* s=out;
|
||
|
register const char* t=in;
|
||
|
register const char* u=out+limit;
|
||
|
for (;;) {
|
||
|
if (!*t) break; *s=*t; if (s==u) break; ++s; ++t;
|
||
|
if (!*t) break; *s=*t; if (s==u) break; ++s; ++t;
|
||
|
if (!*t) break; *s=*t; if (s==u) break; ++s; ++t;
|
||
|
if (!*t) break; *s=*t; if (s==u) break; ++s; ++t;
|
||
|
}
|
||
|
return s-out;
|
||
|
}
|