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
207207setservent
208208strcasecmp
209209strcasestr
210+ strlcat
211+ strlcpy
210212strncasecmp
211213strndup
212214strsignal
Original file line number Diff line number Diff line change @@ -1043,6 +1043,10 @@ extern "C" {
10431043 pub fn pthread_cancel ( thread : :: pthread_t ) -> :: c_int ;
10441044 pub fn pthread_kill ( thread : :: pthread_t , sig : :: c_int ) -> :: c_int ;
10451045
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+
10461050 // sys/epoll.h
10471051 pub fn epoll_create ( size : :: c_int ) -> :: c_int ;
10481052 pub fn epoll_create1 ( flags : :: c_int ) -> :: c_int ;
You can’t perform that action at this time.
0 commit comments