update README
This commit is contained in:
@@ -138,8 +138,8 @@ bigint_div_mod(&q, &r, &a, &b);
|
|||||||
There's also left-shifting and right-shifting:
|
There's also left-shifting and right-shifting:
|
||||||
|
|
||||||
```c
|
```c
|
||||||
bigint_lshift(&res, &a, 128); /* equivalent to res = a << 128
|
bigint_lshift(&res, &a, 128); /* equivalent to res = a << 128 */
|
||||||
bigint_rshift(&res, &a, 128); /* equivalent to res = a >> 128
|
bigint_rshift(&res, &a, 128); /* equivalent to res = a >> 128 */
|
||||||
```
|
```
|
||||||
|
|
||||||
All functions work on temporary values and perform a copy at the end,
|
All functions work on temporary values and perform a copy at the end,
|
||||||
|
Reference in New Issue
Block a user