mirror of
https://github.com/troydhanson/tpl.git
synced 2024-12-26 23:57:25 +08:00
22 lines
368 B
C
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);
|
||
|
}
|