summaryrefslogtreecommitdiff
path: root/strcache.c
AgeCommit message (Collapse)AuthorFilesLines
2006-04-09Another round of cleanups:Paul Smith1-2/+2
- Add more warnings. - Rename variables that mask out-scope vars with the same name. - Remove all casts of return values from xmalloc, xrealloc, and alloca. - Remove casts of the first argument to xrealloc. - Convert all bcopy/bzero/bcmp invocations to use memcp/memmove/memset/memcmp.
2006-02-11Last of the copyright updates.Paul Smith1-2/+1
2006-02-11Update copyright and license notices on all files.Paul Smith1-17/+15
Added new file strcache.c to various non-UNIX makefiles and build scripts.
2006-02-10- New code capability: a read-only string cache. Start of solution forPaul Smith1-0/+219
Savannah bug #15182, but not much uses it yet. Coming shortly. - Added short-circuiting $(and ..) and $(or ...) functions.