summaryrefslogtreecommitdiffstats
path: root/src/StringUtils.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Refactored case-conversion functions.madmaxoft2014-08-041-8/+17
| | | | StrToLower() returns a modified copy of the string, InPlaceLowercase() modifies the string in-place.
* Rewritten string case manipulation to use std::transform.madmaxoft2014-08-041-22/+4
|
* Attempting a compilation fix for gcc / clang.madmaxoft2014-08-031-0/+15
|
* Code style: Fixed braces on separate lines.madmaxoft2014-07-191-3/+5
|
* Fixed style: spaces after commas.madmaxoft2014-07-191-4/+4
|
* Normalized comments.madmaxoft2014-07-171-4/+4
| | | | | This was mostly done automatically and then visually inspected for obvious errors. All //-style comments should have a 2-space separation from the code, and 1 space after the comment sign.
* Fixed basic whitespace problems.madmaxoft2014-07-171-36/+35
| | | | Indenting by spaces and alignment by spaces, as well as trailing whitespace on non-empty lines.
* Fixed MSVC 64-bit build warnings.Mattes D2014-05-091-10/+14
|
* Fixed CreateHexDump's format string.madmaxoft2014-04-041-2/+2
|
* Fixed CreateHexDump's signedness.madmaxoft2014-04-041-9/+9
|
* More Clang warning fixes in the protocols.madmaxoft2014-04-041-1/+1
|
* Fixed a few unneeded breaksTycho2014-03-141-1/+0
|
* Fixed xofts issuesTycho2014-03-101-1/+1
|
* Fixed Alignment issue in ByteBufferTycho2014-03-101-5/+2
|
* Fixed Byte-order reading.madmaxoft2014-01-261-2/+4
| | | | The functions would fail on bytes that were above 127.
* Yet another attempt at VarArgs.madmaxoft2014-01-161-10/+15
|
* Another VarArgs fix.madmaxoft2014-01-161-18/+26
| | | | This time using va_copy() on platforms that have it and simple assignment on platforms that don't.
* Using a 2nd argument instead of va_copy().madmaxoft2014-01-151-13/+15
| | | | This seems to be the only reasonable C++03-only solution.
* Fixed varargs modification.madmaxoft2014-01-151-1/+5
| | | | Ref.: #541.
* Fixed AppendVPrintf() handling for large strings.madmaxoft2014-01-081-6/+4
| | | | This caused a failure in server favicons.
* Fixed faviconsTiger Wang2014-01-071-3/+4
|
* More MSVC warning fixes.madmaxoft2014-01-071-1/+1
|
* Added Base64Encode().madmaxoft2014-01-071-0/+48
|
* Fixed unaligned memory access in FastNBT.madmaxoft2014-01-021-0/+30
| | | | This should fix #420.
* Merge remote-tracking branch 'origin/master' into foldermove2Alexander Harkness2013-11-241-49/+0
| | | | | Conflicts: GNUmakefile
* Moved source to srcAlexander Harkness2013-11-241-0/+815