aboutsummaryrefslogtreecommitdiffstats
path: root/src/parsing.cpp
Commit message (Collapse)AuthorAgeFilesLines
* bit_ops.h no longer includes loadstor.hlloyd2007-10-191-1/+1
| | | | | | | | | Where loadstor.h was needed but only implicitly included via bit_ops.h, include it directly Add endian reversal functions to bit_ops.h Remove some unneeded includes in big_ops2.cpp and a few other files.
* Add functions that can convert between binary IPv4 addresses and standardlloyd2007-10-161-1/+43
| | | | decimal-dotted string notation.
* Bump copyright year to 2007lloyd2007-01-201-1/+1
|
* Use std::string::clear() rather than assign the empty string whenlloyd2006-06-231-3/+3
| | | | we want to remove the current contents of a string object.
* Remove the to_lower function; turns out that both uses of itlloyd2006-06-191-66/+11
| | | | | | | | | | | | | | | within the library were to perform case-insensitive matching, so simply implement that instead. Place all of the character set handling functions into a Charset namespace (and update all callers). Remove the iso2local/local2iso/iso2utf/utf2iso functions, replaced by the new charset transcoder stuff. Initialize the transcoder stored in the global library state upon initialization.
* Initial checkin1.5.6lloyd2006-05-181-0/+296