| 779 | } |
| 780 | |
| 781 | double ply_get_argument_value(p_ply_argument argument) { |
| 782 | assert(argument); |
| 783 | if (!argument) return 0.0; |
| 784 | return argument->value; |
| 785 | } |
| 786 | |
| 787 | int ply_get_ply_user_data(p_ply ply, void **pdata, long *idata) { |
| 788 | assert(ply); |
no outgoing calls
no test coverage detected