aboutsummaryrefslogtreecommitdiffstats
path: root/src/dirvec.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* dirvec: constant pointers in dirvec_find()Max Kellermann2008-10-111-1/+1
| | | | | dirvec_find() does not modify the object, thus it should get a const pointer.
* directory: eliminate CamelCaseMax Kellermann2008-10-111-1/+1
| | | | | | | | CamelCase is ugly, rename the functions. [ew: "directory_get_directory" was too confusing, using "directory_get_subdir" instead (old function was named "getSubDirectory")]
* directory: converted typedef Directory to struct directoryMax Kellermann2008-10-111-8/+9
| | | | | The struct can be forward-declared by other headers, which relaxes the header dependencies.
* dirvec: moved code to dirvec.cMax Kellermann2008-10-111-0/+69
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.