| 386 | } |
| 387 | |
| 388 | int CForward::PushString(const char *string) |
| 389 | { |
| 390 | if (!string) { |
| 391 | return SetError(SP_ERROR_PARAM); |
| 392 | } |
| 393 | default_args_.PushString(string); |
| 394 | if (default_args_.error) |
| 395 | return SetError(SP_ERROR_PARAMS_MAX); |
| 396 | return SP_ERROR_NONE; |
| 397 | } |
| 398 | |
| 399 | int CForward::PushStringEx(char *buffer, size_t length, int sz_flags, int cp_flags) |
| 400 | { |
no outgoing calls
no test coverage detected