File tree 2 files changed +14
-1
lines changed
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -4123,7 +4123,6 @@ fn test_haiku(target: &str) {
4123
4123
"arpa/nameser.h" ,
4124
4124
"arpa/nameser_compat.h" ,
4125
4125
"assert.h" ,
4126
- "bsd_mem.h" ,
4127
4126
"complex.h" ,
4128
4127
"ctype.h" ,
4129
4128
"dirent.h" ,
@@ -4228,6 +4227,7 @@ fn test_haiku(target: &str) {
4228
4227
"libutil.h" ,
4229
4228
"link.h" ,
4230
4229
"pty.h" ,
4230
+ "stringlist.h" ,
4231
4231
}
4232
4232
4233
4233
// Native API
Original file line number Diff line number Diff line change @@ -55,6 +55,8 @@ pub type ACTION = ::c_int;
55
55
pub type posix_spawnattr_t = * mut :: c_void ;
56
56
pub type posix_spawn_file_actions_t = * mut :: c_void ;
57
57
58
+ pub type StringList = _stringlist ;
59
+
58
60
#[ cfg_attr( feature = "extra_traits" , derive( Debug ) ) ]
59
61
pub enum timezone { }
60
62
impl :: Copy for timezone { }
@@ -437,6 +439,12 @@ s! {
437
439
pub flag: * mut :: c_int,
438
440
pub val: :: c_int,
439
441
}
442
+
443
+ pub struct _stringlist {
444
+ pub sl_str: * mut * mut :: c_char,
445
+ pub sl_max: :: size_t,
446
+ pub sl_cur: :: size_t,
447
+ }
440
448
}
441
449
442
450
s_no_extra_traits ! {
@@ -2017,6 +2025,11 @@ extern "C" {
2017
2025
pub fn strsep ( string : * mut * mut :: c_char , delimiters : * const :: c_char ) -> * mut :: c_char ;
2018
2026
pub fn explicit_bzero ( buf : * mut :: c_void , len : :: size_t ) ;
2019
2027
pub fn login_tty ( _fd : :: c_int ) -> :: c_int ;
2028
+
2029
+ pub fn sl_init ( ) -> * mut StringList ;
2030
+ pub fn sl_add ( sl : * mut StringList , n : * mut :: c_char ) -> :: c_int ;
2031
+ pub fn sl_free ( sl : * mut StringList , i : :: c_int ) ;
2032
+ pub fn sl_find ( sl : * mut StringList , n : * mut :: c_char ) -> * mut :: c_char ;
2020
2033
}
2021
2034
2022
2035
cfg_if ! {
You can’t perform that action at this time.
0 commit comments