(standard)
| 478 | } |
| 479 | |
| 480 | def getStdLib(standard): |
| 481 | if standard == 'c89': |
| 482 | return C90_STDLIB_IDENTIFIERS |
| 483 | if standard == 'c99': |
| 484 | return C99_STDLIB_IDENTIFIERS |
| 485 | return C11_STDLIB_IDENTIFIERS |
| 486 | |
| 487 | def isStdLibId(id_, standard='c99'): |
| 488 | id_lists = getStdLib(standard).values() |
no outgoing calls
no test coverage detected