| 1820 | } |
| 1821 | |
| 1822 | SWIGRUNTIME int |
| 1823 | SwigPyPacked_compare(SwigPyPacked *v, SwigPyPacked *w) |
| 1824 | { |
| 1825 | size_t i = v->size; |
| 1826 | size_t j = w->size; |
| 1827 | int s = (i < j) ? -1 : ((i > j) ? 1 : 0); |
| 1828 | return s ? s : strncmp((const char *)v->pack, (const char *)w->pack, 2*v->size); |
| 1829 | } |
| 1830 | |
| 1831 | SWIGRUNTIME PyTypeObject* SwigPyPacked_TypeOnce(void); |
| 1832 |
nothing calls this directly
no outgoing calls
no test coverage detected