(id_, standard='c99')
| 485 | return C11_STDLIB_IDENTIFIERS |
| 486 | |
| 487 | def isStdLibId(id_, standard='c99'): |
| 488 | id_lists = getStdLib(standard).values() |
| 489 | for l in id_lists: |
| 490 | if id_ in l: |
| 491 | return True |
| 492 | return False |
| 493 | |
| 494 | # Reserved keywords defined in ISO/IEC9899:1990 -- ch 6.1.1 |
| 495 | C90_KEYWORDS = { |