tpl/tests/test89.c
2013-03-12 16:38:58 -04:00

22 lines
368 B
C

#include "tpl.h"
#include <stdio.h>
struct ms_t {
int i;
char c[3];
double f;
};
int main() {
tpl_node *tn;
struct ms_t ms;
tn = tpl_map( "S(ic#f)", &ms, 3);
tpl_load( tn, TPL_FILE, "/tmp/test88.tpl" );
tpl_unpack( tn, 0 );
tpl_free( tn );
printf("%d\n%c%c%c\n%.2f\n", ms.i, ms.c[0],ms.c[1],ms.c[2], ms.f);
return(0);
}