/*
 * Copyright 1988, 1989, 1990, 1991 Massachusetts Institute of Technology
 */
#include"structs.h"
nettohostcom(networkints,hostints,number)
     int *networkints, *hostints, number;
{
  int i;
  for ( i = 0; i < number; i++)
    hostints[i] = ntohl(networkints[i]);
}

/*hosttonetcom(hostints,networkints,number)
     int *networkints, *hostints, number;
{
  int i;
  for ( i = 0; i < number; i++)
    networkints[i] = htonl(hostints[i]);
}
*/

