Copies the capabilities C-string into a fixed buffer and returns it. The returned SmallCString is guaranteed to be null-terminated.
()
| 876 | /// Copies the capabilities C-string into a fixed buffer and returns it. |
| 877 | /// The returned SmallCString is guaranteed to be null-terminated. |
| 878 | pub fn capabilities() -> crate::stringzilla::SmallCString { |
| 879 | let caps = unsafe { szs_capabilities() }; |
| 880 | crate::stringzilla::capabilities_from_enum(caps) |
| 881 | } |
| 882 | |
| 883 | /// Levenshtein distance engine for batch processing of binary sequences. |
| 884 | /// |
nothing calls this directly
no test coverage detected
searching dependent graphs…