First id like to thank www.cplusplus.com for their existence and good quality data.
I found a way to parse in cpp apis compatibility levels, api types and short decriptions. See here
Sample Data:
isalpha| http://www.cplusplus.com/reference/cctype/isalpha/ |c90 c99 arm cpp98 cpp11|Check if character is alphabetic (function)
isblank| http://www.cplusplus.com/reference/cctype/isblank/ |c99 cpp11|Check if character is blank (function)
iscntrl| http://www.cplusplus.com/reference/cctype/iscntrl/ |c90 c99 arm cpp98 cpp11|Check if character is a control character (function)
isdigit| http://www.cplusplus.com/reference/cctype/isdigit/ |c90 c99 arm cpp98 cpp11|Check if character is decimal digit (function)
Im quite convinced, that it makes sense to create multiple api_files - one for each level of c standardisation.
they can be easily combined later by us user folks. (just copy or create an additional import for the standard you desire.)
Also made progress with the parser. So we have a first sight of some (now more orderly) cpp keywords.
Currently, the code imports Constants and Functions, but is arranged to support other content, like macros.
'------------------------------------