7 lines
97 B
C
7 lines
97 B
C
#include "array.h"
|
|
|
|
void array_cat0(array* to) {
|
|
static char zero;
|
|
array_catb(to,&zero,1);
|
|
}
|