summaryrefslogtreecommitdiff
path: root/strl.c
Commit message (Collapse)AuthorAgeFilesLines
* Retire splint from our set of static analyzers.Eric S. Raymond2015-03-301-6/+0
| | | | | | | | | | | | | | | | | | | The proximate cause was that we've been seing emission of error messages that were randomly and disturbingly variable across different environments - notably Raspbian and Gentoo splint gave nontrivially different results than Ubuntu 14.10 splint. And this was *not* due to Ubuntu patches! A pristine splint built from the 3.1.2 tarball on Ubuntu didn't match the Raspbian and Gentoo results either. But this has been coming for a while. Easy access to more modern static analyzers such as coverity, scan-build and cppcheck has been decreasing the utility of splint, which is unmaintained and somewhat buggy and not easy to use. Only file not cleaned is ppsthread.c, because Gary has been working on it during this cleanup. All regression tests pass. PPS observed live on GR601-W.
* OS X needs a lot of time.hGary E. Miller2015-03-081-0/+1
| | | | | | gpsd_config.h needs time_t which is in time.h OS X builds now. Untested.
* Nuke trailing whitespace in C source.Eric S. Raymond2012-09-071-1/+1
|
* splint cleanup, includubng an error in the last commit caught by it.Eric S. Raymond2011-02-271-0/+2
|
* Optimized strlcat() to match the optimized strlcpy().Eric S. Raymond2011-02-271-12/+30
| | | | All regression tests pass.
* splint cleanup.Eric S. Raymond2011-02-261-0/+2
|
* Faster implementation of strlcpy(), thanks to Michael Cook.Eric S. Raymond2011-02-251-6/+24
| | | | All regression tests pass.
* Remove a few more unneeded headers.Eric S. Raymond2010-12-201-3/+0
|
* Unused-header removals by deheader. All regression tests pass.Eric S. Raymond2010-12-011-2/+0
|
* Reindent some utility modules. All regression tests pass.Eric S. Raymond2010-04-141-40/+39
|
* Vanish away Id and Rev $ keywords, git won't expand them to anything useful.Eric S. Raymond2010-03-131-2/+1
|
* Copyright stamps everywhere. No code changes.Eric S. Raymond2010-03-111-1/+5
|
* Guard some inclusions that splint doesn't like. Eric S. Raymond2009-09-101-0/+2
| | | | No effect on compilation. All regression tests pass.
* Add $Id$ tagChris Kuethe2006-12-051-0/+1
|
* Break up some modules a little finer, in support of some Python bindings.Eric S. Raymond2006-12-041-1/+1
| | | | All regression tests pass. No logic changes.
* Move strl functions into their own module... Eric S. Raymond2006-12-041-0/+113
...so modules in libgpsd can use them without having to linnk libgps.o.