#string #c-str #ffi #compile-time

null-terminated-str

FFI-friendly utf-8 string, enabling const null-terminated str and caching of the non-terminated string to avoid frequent allocation

5 releases

0.1.4 Sep 16, 2022
0.1.3 Sep 14, 2022
0.1.2 Sep 5, 2022
0.1.1 Sep 5, 2022
0.1.0 Sep 5, 2022

#14 in #c-str

Download history 3/week @ 2024-11-13 11/week @ 2024-11-20 23/week @ 2024-11-27 167/week @ 2024-12-04 26/week @ 2024-12-11 11/week @ 2024-12-18 2/week @ 2025-01-08 9/week @ 2025-01-15 3/week @ 2025-01-22 2/week @ 2025-02-05 5/week @ 2025-02-12 32/week @ 2025-02-19 15/week @ 2025-02-26

54 downloads per month
Used in 8 crates (2 directly)

MIT license

18KB
366 lines

null-terminated-str

Rust

crate.io downloads

crate.io version

docs

Provides null terminated utf-8 str NullTerminatedStr (borrowed) and NullTerminatedString (owned) that is compatible with

  • std::ffi::CStr
  • std::ffi::CString
  • str
  • String

Also provides const_null_terminated_str! to create NullTerminatedStr at compile time and IntoNullTerminatedString that accepts &str, String, &NullTerminatedStr and NullTerminatedString to avoid frequent allocation in FFI call.

Dependencies

~155KB