47 lines · yaml
1header: arpa/inet.h2header_template: inet.h.def3macros: []4types:5 - type_name: in_addr6 - type_name: in_addr_t7enums: []8objects: []9functions:10 - name: htonl11 standards:12 - POSIX13 return_type: uint32_t14 arguments:15 - type: uint32_t16 - name: htons17 standards:18 - POSIX19 return_type: uint16_t20 arguments:21 - type: uint16_t22 - name: inet_addr23 standards:24 - POSIX25 return_type: in_addr_t26 arguments:27 - type: const char *28 - name: inet_aton29 standards:30 - llvm_libc_ext31 return_type: int32 arguments:33 - type: const char *34 - type: in_addr *35 - name: ntohl36 standards:37 - POSIX38 return_type: uint32_t39 arguments:40 - type: uint32_t41 - name: ntohs42 standards:43 - POSIX44 return_type: uint16_t45 arguments:46 - type: uint16_t47