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.
13 lines
410 B
13 lines
410 B
#include "stralloc.h" |
|
|
|
/* stralloc_append adds one byte in[0] to the end of the string stored |
|
* in sa. It is the same as stralloc_catb(&sa,in,1). */ |
|
int stralloc_append(stralloc *sa,const char *in) { |
|
if (stralloc_readyplus(sa,1)) { |
|
sa->s[sa->len]=*in; |
|
++sa->len; |
|
return 1; |
|
} |
|
return 0; |
|
} |
|
|
|
|