File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -207,6 +207,8 @@ setrlimit
207
207
setservent
208
208
strcasecmp
209
209
strcasestr
210
+ strlcat
211
+ strlcpy
210
212
strncasecmp
211
213
strndup
212
214
strsignal
Original file line number Diff line number Diff line change @@ -1043,6 +1043,10 @@ extern "C" {
1043
1043
pub fn pthread_cancel ( thread : :: pthread_t ) -> :: c_int ;
1044
1044
pub fn pthread_kill ( thread : :: pthread_t , sig : :: c_int ) -> :: c_int ;
1045
1045
1046
+ // string.h
1047
+ pub fn strlcat ( dst : * mut :: c_char , src : * const :: c_char , siz : :: size_t ) -> :: size_t ;
1048
+ pub fn strlcpy ( dst : * mut :: c_char , src : * const :: c_char , siz : :: size_t ) -> :: size_t ;
1049
+
1046
1050
// sys/epoll.h
1047
1051
pub fn epoll_create ( size : :: c_int ) -> :: c_int ;
1048
1052
pub fn epoll_create1 ( flags : :: c_int ) -> :: c_int ;
You can’t perform that action at this time.
0 commit comments