home *** CD-ROM | disk | FTP | other *** search
- ntohl(x)
- unsigned long x;
- {
- return(( ((x) >> 24)& 0x000000ff ) | ( ((x) >> 8) & 0x0000ff00 ) |
- ( ((x) << 8) & 0x00ff0000 ) | ( ((x) << 24)& 0xff000000 ));
- }
-
- ntohs(x)
- unsigned short x;
- {
- return((((x) >> 8) | ((x) << 8)) & 0xffff);
- }
-
- htonl(x)
- unsigned long x;
- {
- return(( ((x) >> 24)& 0x000000ff ) | ( ((x) >> 8) & 0x0000ff00 ) |
- ( ((x) << 8) & 0x00ff0000 ) | ( ((x) << 24)& 0xff000000 ));
- }
-
- htons(x)
- unsigned short x;
- {
- return((((x) >> 8) | ((x) << 8)) & 0xffff);
- }
-