]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/doc/conf.txt
Doc: Documented growing arrays, generic allocators and related things
[libucw.git] / ucw / doc / conf.txt
index 43f838ec22a92aaadac5fde721e8edbc6b590bad..695f78fe70e81c27eaffbd15a56db8621d338ec5 100644 (file)
@@ -153,9 +153,8 @@ For example, you can have an static array of five unsigned integers:
 *Dynamic arrays*::
   Similar to static array, but you provide pointer
   to pointer to the given item (eg. if you want dynamic array of
-  integers, you give `**int`). The parser allocates an array of needed
-  size. You can use the <<def_DARY_LEN,`DARY_LEN`>> macro to find out
-  the number of elements actually loaded.
+  integers, you give `**int`). The parser allocates a <<gary:,growing array>>
+  of the required size.
 +
 If you want dynamic array of strings, you would use:
 +