diff options
Diffstat (limited to 'example.c')
| -rw-r--r-- | example.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -68,6 +68,10 @@ main() { astr = B_tostr(&g, a); printf("a >> 30 = %s\n", astr); + BigInt c = B_newstr(&g, "12345678901234567890123"); + astr = B_tostr(&g, c); + printf("c = %s\n", astr); + PRINT_NOTOK(g.destroy(&g)); PRINT_NOTOK(t.destroy(&t)); PRINT_NOTOK(T.destroy(&T)); |
