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.
11 lines
311 B
11 lines
311 B
#include "stralloc.h" |
|
#include "fmt.h" |
|
|
|
int stralloc_catlong0(stralloc *sa,signed long in,unsigned int n) { |
|
if (stralloc_readyplus(sa,fmt_minus(0,in)+fmt_ulong0(0,in,n))) { |
|
sa->len+=fmt_minus(sa->s+sa->len,in); |
|
sa->len+=fmt_ulong0(sa->s+sa->len,in>=0?in:-in,n); |
|
return 1; |
|
} else |
|
return 0; |
|
}
|
|
|