mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
719 B
25 lines
719 B
#include "fmt.h" |
|
|
|
/* "foo" -> " foo" |
|
* write padlen-srclen spaces, if that is >= 0. Then copy srclen |
|
* characters from src. Truncate only if total length is larger than |
|
* maxlen. Return number of characters written. */ |
|
unsigned int fmt_pad(char* dest,const char* src,unsigned int srclen,unsigned int padlen,unsigned int maxlen) { |
|
int todo; |
|
char* olddest=dest; |
|
char* max=dest+maxlen; |
|
todo=padlen-srclen; |
|
if (dest==0) { |
|
int sum=srclen>padlen?srclen:padlen; |
|
return sum>maxlen?maxlen:sum; |
|
} |
|
for (; todo>0; --todo) { |
|
if (dest>max) break; |
|
*dest=' '; ++dest; |
|
} |
|
for (todo=srclen; todo>0; --todo) { |
|
if (dest>max) break; |
|
*dest=*src; ++dest; ++src; |
|
} |
|
return dest-olddest; |
|
}
|
|
|