]> mj.ucw.cz Git - libucw.git/commit
Added a straigtforward implementation of circular linked lists. They are
authorMartin Mares <mj@ucw.cz>
Sun, 15 Jun 2003 20:20:51 +0000 (20:20 +0000)
committerMartin Mares <mj@ucw.cz>
Sun, 15 Jun 2003 20:20:51 +0000 (20:20 +0000)
commitd650b928acb735258f1efb06b9b930a755282f45
tree0bef536b7c547501893078fbab92428cf090469a
parent0de3ca79be9e5111019982280f606fc084ab846a
Added a straigtforward implementation of circular linked lists. They are
a small bit less efficient than our lists.h lists (testing against zero is
faster than testing against list head), but they are nicer and they save
one pointer per list head which makes them better for hash tables etc.
lib/clists.h [new file with mode: 0644]