use isinf(3) and isnan(3) instead of rolling our own
[unix-history] / usr / src / lib / libc / net / inet_lnaof.c
CommitLineData
bb0cfa24
DF
1/*
2 * Copyright (c) 1983 Regents of the University of California.
140b4f5f
KB
3 * All rights reserved.
4 *
269a7923 5 * %sccs.include.redist.c%
bb0cfa24
DF
6 */
7
2ce81398 8#if defined(LIBC_SCCS) && !defined(lint)
24fac7d8 9static char sccsid[] = "@(#)inet_lnaof.c 5.7 (Berkeley) %G%";
140b4f5f 10#endif /* LIBC_SCCS and not lint */
a6792f09 11
24fac7d8 12#include <sys/param.h>
056d5bbd 13#include <netinet/in.h>
24fac7d8 14#include <arpa/inet.h>
a6792f09
SL
15
16/*
17 * Return the local network address portion of an
18 * internet address; handles class a/b/c network
19 * number formats.
20 */
ed2be010 21u_long
3a3b7ace 22inet_lnaof(in)
a6792f09
SL
23 struct in_addr in;
24{
056d5bbd
SL
25 register u_long i = ntohl(in.s_addr);
26
27 if (IN_CLASSA(i))
28 return ((i)&IN_CLASSA_HOST);
29 else if (IN_CLASSB(i))
30 return ((i)&IN_CLASSB_HOST);
31 else
32 return ((i)&IN_CLASSC_HOST);
a6792f09 33}