tpl/tests/test119.c

42 lines
682 B
C
Raw Normal View History

2013-03-12 16:38:58 -04:00
#include <stdio.h>
#include <string.h>
#include <inttypes.h>
#include "tpl.h"
const char *filename = "/tmp/test119.tpl";
#define NUM 100
struct st {
int i;
char c;
double f;
uint16_t v[2];
};
int main() {
struct st s[NUM], d[NUM];
tpl_node *tn;
int i;
uint32_t sz=0;
memset(s, 0, sizeof(s)); /* clear s */
memset(d, 0, sizeof(d)); /* clear d */
/* fill s with random stuff */
for(i=0; i < NUM; i++) {
s[i].i = i; s[i].c='a'+i; s[i].f = 3.14159 * i; s[i].v[0] = NUM*i; s[i].v[1] = NUM+i;
}
tn = tpl_map("S(icfv#)#", s, 2, NUM);
tpl_pack(tn,0);
tpl_dump(tn,TPL_GETSIZE,&sz);
tpl_free(tn);
printf("size is %u\n", sz);
return 0;
}