aboutsummaryrefslogtreecommitdiffstats
path: root/src/match.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-12-10match: case sensitive search with --enable-miniMax Kellermann1-0/+16
Drop support for the expensive case insensitive search in ncmpc-mini mode.
2008-12-10list_window: moved string matching to match.hMax Kellermann1-12/+12
Provide the new function match_line() which searches a string for a needle (ignoring case). This wraps the non-standard function strcasestr().
2008-09-22screen: moved code to ncu.cMax Kellermann1-6/+9
Moved basic libncurses initialization to ncu.c and ncu.h. Keep generic code out of screen.c.
2008-09-15manage tag string allocations in a poolMax Kellermann1-0/+28
There are many duplicated strings in the tag database, e.g. many songs having the same artist. Don't allocate such strings twice, manage all strings in a pool.