tpl/tests/test88.c

19 lines
302 B
C
Raw Normal View History

2013-03-12 16:38:58 -04:00
#include "tpl.h"
struct ms_t {
int i;
char c[3];
double f;
};
int main() {
tpl_node *tn;
struct ms_t ms = {1, {'a','b','c'}, 3.14};
tn = tpl_map( "S(ic#f)", &ms, 3);
tpl_pack( tn, 0 );
tpl_dump( tn, TPL_FILE, "/tmp/test88.tpl" );
tpl_free( tn );
return(0);
}