diff options
author | Nicolas Dato <nicolas.dato@gmail.com> | 2025-02-26 10:19:54 -0300 |
---|---|---|
committer | Nicolas Dato <nicolas.dato@gmail.com> | 2025-02-26 10:19:54 -0300 |
commit | 9d42e0f3d2c2aaebc301ca24f9e36fbfb56e9b4f (patch) | |
tree | 0c7a23e91732ca49cece280562c59fc8c2a2c80a /zola/content/articles/safer-pointers.md | |
parent | d87ac71bc50fe2f0e3c204190cced69379a8fbf9 (diff) |
adding a music list
Diffstat (limited to 'zola/content/articles/safer-pointers.md')
-rw-r--r-- | zola/content/articles/safer-pointers.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zola/content/articles/safer-pointers.md b/zola/content/articles/safer-pointers.md index bbefdad..1a1b55e 100644 --- a/zola/content/articles/safer-pointers.md +++ b/zola/content/articles/safer-pointers.md @@ -5,7 +5,6 @@ date = 2024-11-26 authors = ["Nicolás Dato"] [taxonomies] -Categories=["Software Development"] Tags=["C", "Patterns", "Pointers"] +++ @@ -21,6 +20,7 @@ To reduce errors, and make them safer to use, I propose the following 4 tips: 4. Every time a pointer is passed to another function, deciding who *owns* the pointer ### Example + ```C #include <stdio.h> #include <stdlib.h> |