summaryrefslogtreecommitdiff
path: root/lctype.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Lua 5.3.5 ported to gitv5.3.5Roberto Ierusalimschy2018-12-171-1/+1
| | | | | | | This is the first commit for the branch Lua 5.3. All source files were copied from the official distribution of 5.3.5 in the Lua site. The test files are the same of 5.3.4. The manual came from the previous RCS repository, revision 1.167.1.2.
* added include for 'lprefix.h', for stuff that must be added beforeRoberto Ierusalimschy2014-11-021-1/+4
| | | | any other header file
* missing 'LUA_CORE' definitionRoberto Ierusalimschy2011-10-031-1/+4
|
* resort to standard C ctype for non-ASCII systemsRoberto Ierusalimschy2011-06-241-3/+7
|
* macro 'ltoupper' instead of 'lisupper' (more usefull for Lua)Roberto Ierusalimschy2011-06-231-18/+18
|
* new macros 'LUAI_DDEC'/'LUAI_DDEF' to better control declarations andRoberto Ierusalimschy2009-11-191-2/+2
| | | | definitions of non-static variables
* type of 'luai_ctype_' array changed to unsigned (safer for bitwiseRoberto Ierusalimschy2009-05-271-2/+2
| | | | operations)
* new property 'lisupper' (needed to compute values for hexa digits)Roberto Ierusalimschy2009-05-181-6/+6
|
* small bug: EOZ is a valid character to be testedRoberto Ierusalimschy2009-03-261-2/+3
|
* ctype 'lalpha' includes '_' (as '_' behaves as a letter from theRoberto Ierusalimschy2009-03-111-2/+2
| | | | point of view of Lua)
* added macro 'lisxdigit' (just in case :)Roberto Ierusalimschy2009-03-101-5/+5
|
* global array of ctypes renamed to 'luai_ctype_' (extern names mustRoberto Ierusalimschy2009-02-201-2/+2
| | | | use a "lua" prefix...)
* "homemade" version of ctype.hRoberto Ierusalimschy2009-02-191-0/+44