diff --git a/c99_types.lua b/c99_types.lua index 04f3d49..34e1b65 100644 --- a/c99_types.lua +++ b/c99_types.lua @@ -62,36 +62,47 @@ local c99_types = { int8_t = int8_t, int8_tv = int8_tv, + int8_tp = int8_tp, uint8_t = uint8_t, uint8_tv = uint8_tv, + uint8_tp = uint8_tp, int16_t = int16_t, int16_tv = int16_tv, - + int16_tp = int16_tp, + uint16_t = uint16_t, uint16_tv = uint16_tv, + uint16_tp = uint16_tp, int32_t = int32_t, int32_tv = int32_tv, - + int32_tp = int32_tp, + uint32_t = uint32_t, uint32_tv = uint32_tv, + uint32_tp = uint32_tp, int64_t = int64_t, int64_tv = int64_tv, - + int64_tp = int64_tp, + uint64_t = uint64_t, uint64_tv = uint64_tv, + uint64_tp = uint64_tp, float = float, floatv = floatv, - + floatp = floatp, + double = double, doublev= doublev, + doublep = doublep, wchar_t = wchar_t, wchart_tv = wchar_tv, + wchar_tp = wchar_tp, } return c99_types; diff --git a/cctype.lua b/cctype.lua index 1fd5535..5f448f7 100644 --- a/cctype.lua +++ b/cctype.lua @@ -113,10 +113,10 @@ return { isdigit = isdigit, isgraph = isgraph, islower = islower, - isupper = isupper, isprint = isprint, ispunct = ispunct, isspace = isspace, + isupper = isupper, isxdigit = isxdigit, tolower = tolower,