| 375 | } |
| 376 | |
| 377 | int CForward::PushArray(cell_t *inarray, unsigned int cells, int flags) |
| 378 | { |
| 379 | if (!inarray) { |
| 380 | return SetError(SP_ERROR_PARAM); |
| 381 | } |
| 382 | default_args_.PushArray(inarray, cells, flags); |
| 383 | if (default_args_.error) |
| 384 | return SetError(SP_ERROR_PARAMS_MAX); |
| 385 | return SP_ERROR_NONE; |
| 386 | } |
| 387 | |
| 388 | int CForward::PushString(const char *string) |
| 389 | { |
no outgoing calls
no test coverage detected