aboutsummaryrefslogtreecommitdiffstats
path: root/src/dirvec.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-10-14{dir,song}vec: fix off-by-one errors in {dir,song}vec_deleteEric Wong1-3/+3
Found by Valgrind while looking for another bug... Hmm.. I should really just make this code generic since they're duplicated...
2008-10-13dirvec: dirvec_find() compares basenameMax Kellermann1-1/+4
It is invalid to pass a path with the wrong dirname to dirvec_find(). To be able to find a subdirectory only by its basename, compare only the basename of both paths.
2008-10-09dirvec: constant pointers in dirvec_find()Max Kellermann1-1/+1
dirvec_find() does not modify the object, thus it should get a const pointer.
2008-10-08directory: eliminate CamelCaseMax Kellermann1-1/+1
CamelCase is ugly, rename the functions.
2008-10-08don't include os_compat.hMax Kellermann1-1/+2
When there are standardized headers, use these instead of the bloated os_compat.h.
2008-10-08directory: converted typedef Directory to struct directoryMax Kellermann1-8/+9
The struct can be forward-declared by other headers, which relaxes the header dependencies.
2008-10-08dirvec: moved code to dirvec.cMax Kellermann1-10/+6
Having all functions as static (non-inline) functions generates GCC warnings, and duplicates binary code across several object files. Most of dirvec's methods are too complex for becoming inline functions. Move them all to dirvec.c and publish the prototypes in dirvec.h.
2008-09-29directory: replace DirectoryList with dirvecEric Wong1-0/+73
Small memory reduction compared to songvec since most users have much fewer dirs than songs, but still nice to have.