| 857 | } |
| 858 | |
| 859 | static int ply_read_property(p_ply ply, p_ply_element element, |
| 860 | p_ply_property property, p_ply_argument argument) { |
| 861 | if (property->type == PLY_LIST) |
| 862 | return ply_read_list_property(ply, element, property, argument); |
| 863 | else |
| 864 | return ply_read_scalar_property(ply, element, property, argument); |
| 865 | } |
| 866 | |
| 867 | static int ply_read_element(p_ply ply, p_ply_element element, |
| 868 | p_ply_argument argument) { |
no test coverage detected