libowfat/array/iarray_length.c
2014-04-08 10:01:27 +00:00

6 lines
76 B
C

#include "iarray.h"
size_t iarray_length(iarray* ia) {
return ia->len;
}