Doubly-linked list/Element definition: Difference between revisions

Content added Content deleted
m (→‎{{header|REXX}}: elided STYLE from the PRE html tag.)
Line 104: Line 104:


=={{header|C}}==
=={{header|C}}==
<lang c>struct link {
<lang c>struct link
{
struct link *next;
struct link *next;
struct link *prev;
struct link *prev;