X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=ucw%2Fdoc%2Fconf.txt;h=777dbe10facca83e30255028803bca7296a2a71b;hb=ec6703bb4d58e504fde8ea8429f9b26ab6632696;hp=44b677197c8243e0c690e3fc00fb8acb4a5bf501;hpb=886df670ca5c391ffeb468dd2f30f02a81d257e6;p=libucw.git diff --git a/ucw/doc/conf.txt b/ucw/doc/conf.txt index 44b67719..777dbe10 100644 --- a/ucw/doc/conf.txt +++ b/ucw/doc/conf.txt @@ -141,11 +141,11 @@ are three ways to do that: + For example, you can have an static array of five unsigned integers: + - static uns array[] = { 1, 2, 3, 4, 5 }; + static uint array[] = { 1, 2, 3, 4, 5 }; + static struct cf_section section = { CF_ITEMS { - CF_UNS_ARY("array", array, 5), + CF_UINT_ARY("array", array, 5), CF_END } };