| 914 | /* Convert integer to Bigint number */ |
| 915 | |
| 916 | static Bigint *i2b(int i, Stack_alloc *alloc) |
| 917 | { |
| 918 | Bigint *b; |
| 919 | |
| 920 | b= Balloc(1, alloc); |
| 921 | b->p.x[0]= i; |
| 922 | b->wds= 1; |
| 923 | return b; |
| 924 | } |
| 925 | |
| 926 | |
| 927 | /* Multiply two Bigint numbers */ |
no test coverage detected