Home
last modified time | relevance | path

Searched refs:msgh (Results 1 – 2 of 2) sorted by relevance

/rust-libc-0.2.174/libc-test/src/
H A Dcmsg.c9 struct cmsghdr *cmsg_firsthdr(struct msghdr *msgh) { in cmsg_firsthdr() argument
10 return CMSG_FIRSTHDR(msgh); in cmsg_firsthdr()
13 struct cmsghdr *cmsg_nxthdr(struct msghdr *msgh, struct cmsghdr *cmsg) { in cmsg_nxthdr() argument
14 return CMSG_NXTHDR(msgh, cmsg); in cmsg_nxthdr()
/rust-libc-0.2.174/libc-test/test/
H A Dcmsg.rs12 pub fn cmsg_firsthdr(msgh: *const msghdr) -> *mut cmsghdr; in cmsg_firsthdr()