From: ng0 Date: Fri, 20 Oct 2017 11:06:20 +0000 (+0000) Subject: chapters/developers: Fix code example in 'The Container_MDLL API' to fix line length X-Git-Tag: gnunet-0.11.0rc0~101^2~37 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6d839e76ef3d9f1a94757f137bb70659263eba7d;p=oweals%2Fgnunet.git chapters/developers: Fix code example in 'The Container_MDLL API' to fix line length --- diff --git a/doc/chapters/developer.texi b/doc/chapters/developer.texi index 386d94238..7cef99552 100644 --- a/doc/chapters/developer.texi +++ b/doc/chapters/developer.texi @@ -2957,10 +2957,14 @@ format "next_XX" and "prev_XX" where "XX" is the name of one of the doubly-linked lists. Here is a simple example: @example -struct MyMultiListElement @{ struct -MyMultiListElement *next_ALIST; struct MyMultiListElement *prev_ALIST; struct -MyMultiListElement *next_BLIST; struct MyMultiListElement *prev_BLIST; void -*data; @}; +struct MyMultiListElement { + struct MyMultiListElement *next_ALIST; + struct MyMultiListElement *prev_ALIST; + struct MyMultiListElement *next_BLIST; + struct MyMultiListElement *prev_BLIST; + void + *data; +}; @end example