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.
20 lines
739 B
20 lines
739 B
#include "stralloc.h" |
|
#include <stdlib.h> |
|
|
|
/* stralloc_ready makes sure that sa has enough space allocated to hold |
|
* len bytes: If sa is not allocated, stralloc_ready allocates at least |
|
* len bytes of space, and returns 1. If sa is already allocated, but |
|
* not enough to hold len bytes, stralloc_ready allocates at least len |
|
* bytes of space, copies the old string into the new space, frees the |
|
* old space, and returns 1. Note that this changes sa.s. */ |
|
int stralloc_ready(stralloc *sa,unsigned long int len) { |
|
register int wanted=len+(len>>3)+30; /* heuristic from djb */ |
|
if (!sa->s || sa->a<len) { |
|
register char* tmp; |
|
if (!(tmp=realloc(sa->s,wanted))) |
|
return 0; |
|
sa->a=wanted; |
|
sa->s=tmp; |
|
} |
|
return 1; |
|
}
|
|
|