TODO(dneto): This probably belongs in text.cpp since that's the only place that a spv_binary_t value is created.
| 971 | // TODO(dneto): This probably belongs in text.cpp since that's the only place |
| 972 | // that a spv_binary_t value is created. |
| 973 | void spvBinaryDestroy(spv_binary binary) { |
| 974 | if (binary) { |
| 975 | if (binary->code) delete[] binary->code; |
| 976 | delete binary; |
| 977 | } |
| 978 | } |
| 979 | |
| 980 | size_t spv_strnlen_s(const char* str, size_t strsz) { |
| 981 | if (!str) return 0; |
no outgoing calls