diff --git a/10 Notes/How to get a pointer to a seq to pass it to a C library.md b/10 Notes/How to get a pointer to a seq to pass it to a C library.md index 8983512..39fb1d6 100644 --- a/10 Notes/How to get a pointer to a seq to pass it to a C library.md +++ b/10 Notes/How to get a pointer to a seq to pass it to a C library.md @@ -18,4 +18,4 @@ sha256Update(ctx, str.cstring, input[i].len.uint) ``` Here we use `sha256Update` from [[BearSSL]] library. See [[BearSSL hashing]] for more complete examples. -See also [Accessing seq pointer](https://forum.nim-lang.org/t/1489) and [Use cstring for C binding](https://forum.nim-lang.org/t/8179) on Nim forum. +See also [Accessing seq pointer](https://forum.nim-lang.org/t/1489), [Use cstring for C binding](https://forum.nim-lang.org/t/8179), and [Arrays and Sequences in nim](https://forum.nim-lang.org/t/5703) on Nim forum.