Remove and return last entry from argument stack. */
| 7597 | |
| 7598 | /** Remove and return last entry from argument stack. */ |
| 7599 | static const struct arg * |
| 7600 | pop_args(struct context *ctx) |
| 7601 | { |
| 7602 | return ctx->args_num ? ctx->args[--ctx->args_num] : NULL; |
| 7603 | } |
| 7604 | |
| 7605 | /** Add entry on top of the argument stack. */ |
| 7606 | static int |
no outgoing calls
no test coverage detected