blob: 5e93c554656e6e73693239d61e10583c940f6271 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include <string.h>
#include <kalmia.h>
#include "util/util.h"
#include "xml/xml.h"
#include "geometry.h"
int kai_read_float_array(struct ka_float_array_t *dest, struct kai_tag_t *src)
{
if (strcmp(src->type, "float_array") != 0) {
/* incorrect tag type */
return -1;
}
return 0;
}
|