| 28 | } |
| 29 | |
| 30 | CacheObj *CacheObj_Dup(const CacheObj *obj) { |
| 31 | CacheObj *dup = (CacheObj *)rm_malloc(sizeof(CacheObj)); |
| 32 | memcpy(dup, obj, sizeof(CacheObj)); |
| 33 | return dup; |
| 34 | } |
| 35 | |
| 36 | bool CacheObj_EQ(const CacheObj *a, const CacheObj *b) { |
| 37 | if(a == b) return true; |
nothing calls this directly
no test coverage detected