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.
12 lines
351 B
12 lines
351 B
#include "stralloc.h" |
|
#include <stdlib.h> |
|
|
|
/* stralloc_readyplus is like stralloc_ready except that, if sa is |
|
* already allocated, stralloc_readyplus adds the current length of sa |
|
* to len. */ |
|
int stralloc_readyplus(stralloc *sa,unsigned int len) { |
|
if (sa->s) |
|
return stralloc_ready(sa,sa->len+len); |
|
else |
|
return stralloc_ready(sa,len); |
|
}
|
|
|