| 193 | |
| 194 | |
| 195 | int context_register_int(enum osips_context type, context_destroy_f f) |
| 196 | { |
| 197 | context_sizes[type] += sizeof(int); |
| 198 | type_offsets[type][CONTEXT_STR_TYPE] += sizeof(int); |
| 199 | type_offsets[type][CONTEXT_PTR_TYPE] += sizeof(int); |
| 200 | register_context_destroy(f, type, CONTEXT_INT_TYPE); |
| 201 | |
| 202 | return type_sizes[type][CONTEXT_INT_TYPE]++; |
| 203 | } |
| 204 | |
| 205 | int context_register_str(enum osips_context type, context_destroy_f f) |
| 206 | { |
no test coverage detected