| 1111 | } |
| 1112 | |
| 1113 | static void ply_property_init(p_ply_property property) { |
| 1114 | property->name[0] = '\0'; |
| 1115 | property->type = -1; |
| 1116 | property->length_type = -1; |
| 1117 | property->value_type = -1; |
| 1118 | property->read_cb = (p_ply_read_cb) NULL; |
| 1119 | property->pdata = NULL; |
| 1120 | property->idata = 0; |
| 1121 | } |
| 1122 | |
| 1123 | static p_ply ply_alloc(void) { |
| 1124 | p_ply ply = (p_ply) calloc(1, sizeof(t_ply)); |