aboutsummaryrefslogtreecommitdiff
path: root/doc/chapters
diff options
context:
space:
mode:
authorng0 <ng0@infotropique.org>2017-10-20 11:06:20 +0000
committerng0 <ng0@infotropique.org>2017-10-20 11:06:20 +0000
commit6d839e76ef3d9f1a94757f137bb70659263eba7d (patch)
treed2f4d0731a6782ebda28081f024d464d98b62c60 /doc/chapters
parent75a88df9c49c9e1b0e4d1e3c3df8f6daf2702dda (diff)
downloadgnunet-6d839e76ef3d9f1a94757f137bb70659263eba7d.tar.gz
gnunet-6d839e76ef3d9f1a94757f137bb70659263eba7d.zip
chapters/developers: Fix code example in 'The Container_MDLL API' to fix line length
Diffstat (limited to 'doc/chapters')
-rw-r--r--doc/chapters/developer.texi12
1 files changed, 8 insertions, 4 deletions
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
2957doubly-linked lists. Here is a simple example: 2957doubly-linked lists. Here is a simple example:
2958 2958
2959@example 2959@example
2960struct MyMultiListElement @{ struct 2960struct MyMultiListElement {
2961MyMultiListElement *next_ALIST; struct MyMultiListElement *prev_ALIST; struct 2961 struct MyMultiListElement *next_ALIST;
2962MyMultiListElement *next_BLIST; struct MyMultiListElement *prev_BLIST; void 2962 struct MyMultiListElement *prev_ALIST;
2963*data; @}; 2963 struct MyMultiListElement *next_BLIST;
2964 struct MyMultiListElement *prev_BLIST;
2965 void
2966 *data;
2967};
2964@end example 2968@end example
2965 2969
2966 2970