diff options
author | Avuton Olrich <avuton@gmail.com> | 2006-07-14 19:13:51 +0000 |
---|---|---|
committer | Avuton Olrich <avuton@gmail.com> | 2006-07-14 19:13:51 +0000 |
commit | 7154c510e56be26a7d79a4d60a45ad6c60d2659c (patch) | |
tree | cd6d78ef8b31fca63ea4d0653e384ece4f74bff3 /src/list.h | |
parent | 75789d1490469eb89dab2093a982480b5bd6143f (diff) | |
download | mpd-7154c510e56be26a7d79a4d60a45ad6c60d2659c.tar.gz mpd-7154c510e56be26a7d79a4d60a45ad6c60d2659c.tar.xz mpd-7154c510e56be26a7d79a4d60a45ad6c60d2659c.zip |
[CLEANUP] Remove unused code
Static what makes sense
git-svn-id: https://svn.musicpd.org/mpd/trunk@4329 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/list.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/list.h b/src/list.h index 00568a427..3730adf5e 100644 --- a/src/list.h +++ b/src/list.h @@ -97,17 +97,12 @@ void deleteNodeFromList(List * list,ListNode * node); */ int findInList(List * list, char * key, void ** data); -/* if _key_ is not found, *_node_ is assigned to the node before which - the info would be found */ -int findNodeInList(List * list, char * key, ListNode ** node, int * pos); /* frees memory malloc'd for list and its nodes * _list_ -> List to be free'd */ void freeList(void * list); -void clearList(List * list); - void sortList(List * list); #endif |