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.
17 lines
377 B
17 lines
377 B
#include "array.h" |
|
#include "byte.h" |
|
|
|
void array_catb(array* to,const char* from,uint64 len) { |
|
long l; |
|
if (!len) return; |
|
if (to->allocated<0) return; |
|
if (to->initialized+len<to->initialized) { |
|
fail: |
|
array_fail(to); |
|
return; |
|
} |
|
l=to->initialized; |
|
if (!array_allocate(to,1,to->initialized+len-1)) |
|
goto fail; |
|
byte_copy(to->p+l,to->initialized-l,from); |
|
}
|
|
|