diff doc/docs/dev/ownership.md @ 245:97f55f6b9593

doc: add CMake macros documentation
author David Demelier <markand@malikania.fr>
date Mon, 30 Nov 2020 10:54:59 +0100
parents d47e70da760e
children 19782ea1cf4a
line wrap: on
line diff
--- a/doc/docs/dev/ownership.md	Mon Nov 30 09:48:52 2020 +0100
+++ b/doc/docs/dev/ownership.md	Mon Nov 30 10:54:59 2020 +0100
@@ -67,6 +67,7 @@
 ```c
 struct player {
     const char *name; // Not allocated, no deallocation
+};
 ```
 
 ## Ownership
@@ -120,8 +121,8 @@
 
 ## Memory handling in Molko's Adventure API
 
-|         | Dynamic allocation? | Notes                                                   |
-|---------|---------------------|---------------------------------------------------------|
-| libcore | None                | The util.h provides convenient allocators for the user. |
-| libui   | None                |                                                         |
-| librpg  | In map.h module     | Maps are big chunk of data.                             |
+|             | Dynamic allocation?         | Notes                                                   |
+|-------------|-----------------------------|---------------------------------------------------------|
+| libmlk-core | None                        | The util.h provides convenient allocators for the user. |
+| libmlk-ui   | None                        |                                                         |
+| libmlk-rpg  | In map and tilesets loaders | Maps are big chunk of data.                             |