update README

This commit is contained in:
John Regan
2023-03-19 17:52:13 -04:00
parent 55f08f9028
commit b9d376056f

View File

@@ -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,