comparison src/conv.rs @ 62:d83623951070

Further improve docs and put `conv` behind a feature gate.
author Paul Fisher <paul@pfish.zone>
date Wed, 21 May 2025 23:10:09 -0400
parents 05cc2c27334f
children a7aa5ca0d00d
comparison
equal deleted inserted replaced
61:5eecd797fc69 62:d83623951070
1 //! The [Conversation] struct, for interacting with the user. 1 //! The [Conversation] struct, for interacting with the user.
2 //!
3 //! This module is experimental and will probably be rewritten in the future
4 //! to improve the interface for both PAM modules and clients.
2 5
3 use libc::{c_char, c_int}; 6 use libc::{c_char, c_int};
4 use std::ffi::{CStr, CString}; 7 use std::ffi::{CStr, CString};
5 use std::ptr; 8 use std::ptr;
6 9