1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00

methods & templates

This commit is contained in:
tg(x) 2011-11-30 13:51:50 +01:00
parent efd58428a9
commit 75f4e0aee4
11 changed files with 197 additions and 92 deletions

View file

@ -99,7 +99,11 @@ main (int argc, char **argv)
return 10 + i;
}
puts("psyc_text passed all tests.");
size_t tlen = 0;
char *t = psyc_template(PSYC_MC_NOTICE_CONTEXT_ENTER, &tlen);
printf("_notice_context_enter = %s, %ld\n", t, tlen);
printf("psyc_text passed all tests.\n");
return 0;
}