Copies the capabilities C-string into a fixed buffer and returns it. The returned SmallCString is guaranteed to be null-terminated.
()
| 835 | /// Copies the capabilities C-string into a fixed buffer and returns it. |
| 836 | /// The returned SmallCString is guaranteed to be null-terminated. |
| 837 | pub fn capabilities() -> SmallCString { |
| 838 | let caps = unsafe { sz_capabilities() }; |
| 839 | capabilities_from_enum(caps) |
| 840 | } |
| 841 | |
| 842 | /// Computes the checksum value of unsigned bytes in a given byte slice `text`. |
| 843 | /// This function is useful for verifying data integrity and detecting changes in |
nothing calls this directly
no test coverage detected
searching dependent graphs…