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
379 B
13 lines
379 B
#include "array.h" |
|
#include "textcode.h" |
|
|
|
void fmt_to_array(size_t (*func)(char*,const char*,size_t), |
|
array* a,const char* src,size_t len) { |
|
size_t needed=func(0,src,len); |
|
if (array_bytes(a)+needed>needed && |
|
array_allocate(a,1,array_bytes(a)+needed-1)) { |
|
char* x=((char*)array_start(a))+array_bytes(a)-needed; |
|
func(x,src,len); |
|
} else |
|
array_fail(a); |
|
}
|
|
|