From 19f06f57856427bab51e10049217ff996bc5a956 Mon Sep 17 00:00:00 2001 From: "alejandro.nadal@synics.ch" Date: Mon, 5 May 2025 20:03:30 +0200 Subject: [PATCH 1/2] Adding a new memory allocation tutorial which includes automated testing in C --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f3119b7..540032b6 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,9 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB ## C/C++: - [Build an Interpreter](http://www.craftinginterpreters.com/) (Chapter 14 on is written in C) -- [Memory Allocators 101 - Write a simple memory allocator](https://arjunsreedharan.org/post/148675821737/memory-allocators-101-write-a-simple-memory) +- Memory allocators: + - [Memory Allocators 101 - Write a simple memory allocator](https://arjunsreedharan.org/post/148675821737/memory-allocators-101-write-a-simple-memory) + - [Malloc is not magic -- Implementing my own memory allocator](https://medium.com/p/e0354e914402) - [Write a Shell in C](https://brennan.io/2015/01/16/write-a-shell-in-c/) - [Write a FUSE Filesystem](https://www.cs.nmsu.edu/~pfeiffer/fuse-tutorial/) - [Build Your Own Text Editor](http://viewsourcecode.org/snaptoken/kilo/) From 978b1484b7b7258fba8ee727e4516341ddeeaed3 Mon Sep 17 00:00:00 2001 From: "alejandro.nadal@synics.ch" Date: Mon, 5 May 2025 20:07:08 +0200 Subject: [PATCH 2/2] reformatting to follow guidelines --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 540032b6..ba4fa7af 100644 --- a/README.md +++ b/README.md @@ -35,9 +35,8 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB ## C/C++: - [Build an Interpreter](http://www.craftinginterpreters.com/) (Chapter 14 on is written in C) -- Memory allocators: - - [Memory Allocators 101 - Write a simple memory allocator](https://arjunsreedharan.org/post/148675821737/memory-allocators-101-write-a-simple-memory) - - [Malloc is not magic -- Implementing my own memory allocator](https://medium.com/p/e0354e914402) +- [Memory Allocators 101 - Write a simple memory allocator](https://arjunsreedharan.org/post/148675821737/memory-allocators-101-write-a-simple-memory) +- [Malloc is not magic -- Implementing a safe, space optimized memory allocator](https://medium.com/p/e0354e914402) - [Write a Shell in C](https://brennan.io/2015/01/16/write-a-shell-in-c/) - [Write a FUSE Filesystem](https://www.cs.nmsu.edu/~pfeiffer/fuse-tutorial/) - [Build Your Own Text Editor](http://viewsourcecode.org/snaptoken/kilo/)