| 8 | } ClassNameStruct; |
| 9 | |
| 10 | ClassName ClassName_Create(void) |
| 11 | { |
| 12 | ClassName self = calloc(1, sizeof(ClassNameStruct)); |
| 13 | return self; |
| 14 | } |
| 15 | |
| 16 | void ClassName_Destroy(ClassName self) |
| 17 | { |
nothing calls this directly
no outgoing calls
no test coverage detected