summaryrefslogtreecommitdiff
path: root/lstrlib.c
Commit message (Expand)AuthorAgeFilesLines
...
* corrected comparisons of signed (int) with unsigned (size_t)Roberto Ierusalimschy2015-10-291-3/+3
* option 'c' in 'string.pack' accepts any string size (truncatingRoberto Ierusalimschy2015-10-281-3/+8
* detail (removed unreacheable 'break')Roberto Ierusalimschy2015-10-081-2/+2
* 'gmatch' keeps its state in a userdata (keeping the same 'MatchState'Roberto Ierusalimschy2015-09-281-20/+26
* implemented counter to abort non-linear behavior in pattern matchingRoberto Ierusalimschy2015-09-261-26/+46
* in 'lua_number2strx', use the call to 'l_sprintf' to add exponentRoberto Ierusalimschy2015-07-201-4/+3
* buffer size changed from size_t to int (it is always small) +Roberto Ierusalimschy2015-06-241-7/+10
* using 'snprintf' in C99 (both for documentation of buffer sizesRoberto Ierusalimschy2015-06-181-16/+18
* new configuration macro 'l_mathlim' (simplifies some dependenciesRoberto Ierusalimschy2015-05-201-10/+7
* more consistent use of locale radix character across LuaRoberto Ierusalimschy2015-04-031-2/+3
* details (avoid 'lint' warnings)Roberto Ierusalimschy2015-03-281-12/+12
* detailRoberto Ierusalimschy2015-02-091-2/+2
* detailRoberto Ierusalimschy2015-02-051-2/+2
* make buffer for format specification a little larger (length modifierRoberto Ierusalimschy2015-02-041-3/+2
* own implementation for 'string.format("%a")' for C89 platformsRoberto Ierusalimschy2015-02-041-3/+84
* BUG (when compiled with long double): buffer overflow when formattingRoberto Ierusalimschy2015-01-131-5/+11
* correct computation for limit in 'getnum'Roberto Ierusalimschy2014-12-111-3/+3
* better limits for 'sting.rep' and 'string.packsize'Roberto Ierusalimschy2014-12-111-12/+17
* new function 'string.packsize'Roberto Ierusalimschy2014-12-101-1/+24
* no more default size for option 'c' in pack/unpackRoberto Ierusalimschy2014-12-041-2/+6
* detail (to avoid a "to avoid warnings" return)Roberto Ierusalimschy2014-11-111-10/+8
* details (error messages)Roberto Ierusalimschy2014-11-081-4/+3
* detailRoberto Ierusalimschy2014-11-051-2/+2
* more direct way to fill sign-extension extra bytes when packingRoberto Ierusalimschy2014-11-051-13/+29
* added macro for configuring padding value in 'string.pack'Roberto Ierusalimschy2014-11-041-6/+12
* added include for 'lprefix.h', for stuff that must be added beforeRoberto Ierusalimschy2014-11-021-4/+6
* new option '=' (native endian) for pack/unpackRoberto Ierusalimschy2014-10-311-1/+2
* comments (a few extra quotes around identifiers)Roberto Ierusalimschy2014-10-301-2/+2
* detailRoberto Ierusalimschy2014-10-281-2/+2
* pack/unpack do not handle final '\0' as an "option" (it strechesRoberto Ierusalimschy2014-10-271-19/+11
* `name' in comments changed to 'name'Roberto Ierusalimschy2014-10-251-13/+13
* added some casts to avoid warnings in some compilersRoberto Ierusalimschy2014-10-241-3/+3
* in 'pack'/'unpack', endianness and alignment treated like options +Roberto Ierusalimschy2014-10-201-55/+52
* macros 'LUA_QL'/'LUA_QL' deprecatedRoberto Ierusalimschy2014-10-171-11/+8
* 'dumpint' and related functions replaced by 'string.pack'/'string.unpack'Roberto Ierusalimschy2014-10-171-157/+340
* deprecated "cast macros" ('luaL_checkint', 'luaL_optint', etc.)Roberto Ierusalimschy2014-10-011-4/+4
* [un]'dumpint' -> [un]'dumpinteger'Roberto Ierusalimschy2014-08-201-3/+3
* do not assume numbers are coercible to stringsRoberto Ierusalimschy2014-07-301-4/+7
* added some casts between integral types (to avoid warnings)Roberto Ierusalimschy2014-07-291-6/+6
* using lua_Unsigned (instead of lua_Integer) for bit manipulationRoberto Ierusalimschy2014-04-271-7/+8
* back to larger sizes for 'dumpint/undumpint' (small Lua shouldRoberto Ierusalimschy2014-04-161-13/+39
* size of strings in 'string.rep' should be limited by the size ofRoberto Ierusalimschy2014-04-141-3/+3
* new global macro 'LUA_MAXUNSIGNED'Roberto Ierusalimschy2014-04-121-2/+2
* maximum size for dump of integers is size of lua_Integer (whichRoberto Ierusalimschy2014-04-101-36/+17
* pack/unpack functions renamed dump/undumpRoberto Ierusalimschy2014-04-101-14/+14
* avoid constant overflow when shifting left signed integers untilRoberto Ierusalimschy2014-04-031-5/+5
* fancier way to do sign extensionRoberto Ierusalimschy2014-03-311-4/+3
* missplelling in comments/function names (endianess -> endianness)Roberto Ierusalimschy2014-03-271-8/+8
* native lua_Number may be neither float nor double (in pack/unpackfloat)Roberto Ierusalimschy2014-03-211-17/+22
* details (typos in comments)Roberto Ierusalimschy2014-03-211-8/+8