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.
21 lines
734 B
C
21 lines
734 B
C
#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 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;
|
|
}
|