mirror of
https://github.com/troydhanson/tpl.git
synced 2024-12-26 07:31:09 +08:00
26 lines
433 B
C
26 lines
433 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "tpl.h"
|
|
|
|
int main() {
|
|
tpl_node *tn;
|
|
char *s,*t;
|
|
void *addr;
|
|
int sz;
|
|
|
|
tn = tpl_map("s",&s);
|
|
s = "hello, world!";
|
|
tpl_pack(tn,0);
|
|
tpl_dump(tn,TPL_MEM,&addr,&sz);
|
|
tpl_free(tn);
|
|
|
|
tn = tpl_map("s",&t);
|
|
tpl_load(tn,TPL_MEM,addr,sz);
|
|
tpl_unpack(tn,0);
|
|
printf("t is %s\n", t);
|
|
free(t);
|
|
tpl_free(tn);
|
|
free(addr);
|
|
return(0);
|
|
}
|