| 792 | } |
| 793 | |
| 794 | int NULLC::ArrayCompare(NULLCAutoArray a, NULLCAutoArray b) |
| 795 | { |
| 796 | return a.len == b.len && a.ptr == b.ptr; |
| 797 | } |
| 798 | int NULLC::ArrayNCompare(NULLCAutoArray a, NULLCAutoArray b) |
| 799 | { |
| 800 | return a.len != b.len || a.ptr != b.ptr; |
nothing calls this directly
no outgoing calls
no test coverage detected