From f8100811ac31fa2b4d8856aa9883bb47e9e3ddc3 Mon Sep 17 00:00:00 2001 From: Marcin Czenko Date: Mon, 30 Jun 2025 16:08:14 +0200 Subject: [PATCH] adds one more link to "How to get a pointer" doc --- .../How to get a pointer to a seq to pass it to a C library.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.