inet.mh

来自「开放源码的编译器open watcom 1.6.0版的源代码」· MH 代码 · 共 25 行

MH
25
字号
/*
 *  arpa/inet.h      Internet address manipulation routines
 *
:include crwat.sp
 */
#ifndef _ARPA_INET_H_INCLUDED
#define _ARPA_INET_H_INCLUDED
#include <sys/types.h>
:include readonly.sp
:include cpluspro.sp
:include lnxkpack.sp

int inet_aton( const char *cp, struct in_addr *__inp );
uint32_t inet_addr( const char *__cp );
uint32_t inet_network( const char *__cp );
char *inet_ntoa( struct in_addr in );
struct in_addr inet_makeaddr( int net, int __host );
uint32_t inet_lnaof( struct in_addr __in );
uint32_t inet_netof( struct in_addr __in );

:include poppack.sp
:include cplusepi.sp
#endif /* !_ARPA_INET_H_INCLUDED */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?