Files
mars-libowfat/array/array_cat0.c
2025-01-20 18:40:47 +00:00

7 lines
106 B
C

#include <libowfat/array.h>
void array_cat0(array* to) {
static char zero;
array_catb(to,&zero,1);
}