** Find a "name" for the constant 'c'. */
| 424 | ** Find a "name" for the constant 'c'. |
| 425 | */ |
| 426 | static void kname (const Proto *p, int c, const char **name) { |
| 427 | TValue *kvalue = &p->k[c]; |
| 428 | *name = (ttisstring(kvalue)) ? svalue(kvalue) : "?"; |
| 429 | } |
| 430 | |
| 431 | |
| 432 | /* |
no outgoing calls
no test coverage detected