We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 181b043 commit eed2acbCopy full SHA for eed2acb
libc-test/semver/solarish.txt
@@ -78,3 +78,5 @@ posix_spawnattr_setsigmask
78
posix_spawnp
79
recvmsg
80
sendmsg
81
+strftime
82
+strftime_l
src/unix/solarish/mod.rs
@@ -3202,6 +3202,20 @@ extern "C" {
3202
pub fn arc4random_uniform(upper_bound: u32) -> u32;
3203
3204
pub fn secure_getenv(name: *const c_char) -> *mut c_char;
3205
+
3206
+ pub fn strftime(
3207
+ s: *mut c_char,
3208
+ maxsize: size_t,
3209
+ format: *const c_char,
3210
+ timeptr: *const crate::tm,
3211
+ ) -> size_t;
3212
+ pub fn strftime_l(
3213
3214
3215
3216
3217
+ loc: crate::locale_t,
3218
3219
}
3220
3221
#[link(name = "sendfile")]
0 commit comments