aboutsummaryrefslogtreecommitdiff
path: root/src/dlist.h
Commit message (Collapse)AuthorAge
* removed dlist.hMax Kellermann2009-01-07
| | | | Get rid of the non-portable Linux list library, part III (final).
* added prefix to header macrosMax Kellermann2008-10-31
| | | | | | | "LOG_H" is a macro which is also used by ffmpeg/log.h. This is ffmpeg's fault, because short macros should be reserved for applications, but since it's always a good idea to choose prefixed macro names, even for applications, we are going to do that in MPD.
* imported list.h from the Linux kernel sourcesMax Kellermann2008-08-28
linux/list.h is a nice doubly linked list library - it is lightweight and powerful at the same time. It will be useful later, when we begin to allocate client structures dynamically. Import it, and strip out all the stuff which we are not going to use.