summaryrefslogtreecommitdiff
path: root/src/charset
Commit message (Collapse)AuthorAgeFilesLines
* Replace use of abort() with assertions.John-Mark Bell2014-01-135-30/+19
|
* Fix bounds checking. Fixes CID 1152178, 1152179.John-Mark Bell2014-01-122-2/+2
|
* Remove client allocation function.Michael Drake2013-12-147-40/+10
|
* Update to new NSBUILD infrastructureDaniel Silverstone2012-06-293-3/+3
| | | | svn path=/trunk/libparserutils/; revision=14003
* Internalise the internal symbol names.Daniel Silverstone2011-01-263-4/+4
| | | | svn path=/trunk/libparserutils/; revision=11493
* Fix profile and coverage targetsJohn Mark Bell2010-12-061-1/+3
| | | | svn path=/trunk/libparserutils/; revision=11022
* Remove spurious assignmentJohn Mark Bell2010-12-051-1/+1
| | | | svn path=/trunk/libparserutils/; revision=11015
* C89François Revel2010-12-051-1/+4
| | | | svn path=/trunk/libparserutils/; revision=11013
* Make sure we elide trailing non-characters when matching aliasesDaniel Silverstone2010-12-041-0/+4
| | | | svn path=/trunk/libparserutils/; revision=10973
* Remove init/final code and turn aliases into static data structure. r=vinceDaniel Silverstone2010-12-045-481/+80
| | | | svn path=/trunk/libparserutils/; revision=10961
* Remove dependency on a library providing ntohl/htonl.John Mark Bell2009-07-025-60/+20
| | | | svn path=/trunk/libparserutils/; revision=8267
* Inevitably, Windows requires winsock.h instead of the BSD stack headers.John Mark Bell2009-07-025-0/+20
| | | | svn path=/trunk/libparserutils/; revision=8263
* Reasons I hate TCPIPLibs:John Mark Bell2009-06-205-86/+96
| | | | | | | | | | | | 1) You need to include sys/types.h yourself 2) You need to ensure that netinet/in.h is included before arpa/inet.h 3) Neither arpa/inet.h nor netinet/in.h define htonl/ntohl -- it's in machine/endian.h which, fortunately, is included from sys/types.h Add a bunch of explicit casts to uint32_t to the results of calls to ntohl/htonl to appease Norcroft's "implicit narrowing cast" warning. svn path=/trunk/libparserutils/; revision=7891
* Port to new buildsystemJohn Mark Bell2009-03-243-135/+7
| | | | svn path=/trunk/libparserutils/; revision=6854
* Silence doxygen warnings.John Mark Bell2009-01-092-2/+3
| | | | svn path=/trunk/libparserutils/; revision=6007
* Pedantic whitespace changesJohn Mark Bell2008-11-305-12/+8
| | | | svn path=/trunk/libparserutils/; revision=5842
* C89François Revel2008-11-296-19/+33
| | | | svn path=/trunk/libparserutils/; revision=5839
* Return errors from constructors and destructors.John Mark Bell2008-11-087-127/+195
| | | | svn path=/trunk/libparserutils/; revision=5652
* ASCII charset codec.John Mark Bell2008-09-243-1/+529
| | | | svn path=/trunk/libparserutils/; revision=5429
* Purge remaining traces of iconv codec.John Mark Bell2008-09-071-7/+0
| | | | svn path=/trunk/libparserutils/; revision=5284
* Tidy up CFLAGS/LDFLAGSJohn Mark Bell2008-09-051-1/+1
| | | | svn path=/trunk/libparserutils/; revision=5249
* Remove the iconv codec. It serves no purpose.John Mark Bell2008-09-052-684/+1
| | | | svn path=/trunk/libparserutils/; revision=5248
* Fix encoding. Sigh.John Mark Bell2008-09-052-4/+6
| | | | svn path=/trunk/libparserutils/; revision=5241
* Fix stupid.John Mark Bell2008-09-042-4/+4
| | | | | | Testcase for cp1252. Currently fails because of spurious nonsense at the end of the output. May be a test driver bug. svn path=/trunk/libparserutils/; revision=5237
* Fix bugs.John Mark Bell2008-09-042-2/+2
| | | | svn path=/trunk/libparserutils/; revision=5236
* Extended 8bit coded. Mostly for Windows-125n support. Also needs testing.John Mark Bell2008-09-044-1/+765
| | | | svn path=/trunk/libparserutils/; revision=5235
* ISO-8859-n codec. This needs some testing.John Mark Bell2008-09-044-1/+827
| | | | svn path=/trunk/libparserutils/; revision=5233
* Fix valgrind's aliascmp() warning.Andrew Sidwell2008-08-111-3/+4
| | | | svn path=/trunk/libparserutils/; revision=5026
* Add parenthesesJohn Mark Bell2008-08-111-5/+5
| | | | svn path=/trunk/libparserutils/; revision=5025
* Fix a logic error, and make a test clearer & more efficient as per jmb's review.Andrew Sidwell2008-08-091-5/+3
| | | | svn path=/trunk/libparserutils/; revision=4973
* Make the lpu alias comparion stuff ignore punctuation characters, as per HTML5Andrew Sidwell2008-08-071-6/+60
| | | | svn path=/trunk/libparserutils/; revision=4947
* Make comments explicit about the endianness of UCS-4 dataJohn Mark Bell2008-06-282-6/+6
| | | | svn path=/trunk/libparserutils/; revision=4473
* - parserutils_charset_utf16_to_ucs4(): fixed surrogate handling.John Tytgat2008-06-281-5/+10
| | | | | | | - cscodec-utf8.c(run_test): Added more asserts. - Added UTF-16 tester (based on the UTF-8 one). svn path=/trunk/libparserutils/; revision=4472
* Remove unnecessary casting.John Tytgat2008-06-283-7/+5
| | | | svn path=/trunk/libparserutils/; revision=4470
* Pedantic spelling changes of encoding names UTF-8, UTF-16 and UCS-4John Tytgat2008-06-287-34/+34
| | | | svn path=/trunk/libparserutils/; revision=4469
* Import parser construction utility libraryJohn Mark Bell2008-05-0115-0/+3424
svn path=/trunk/libparserutils/; revision=4111