/* * Header file for the 3 bit-hacking utilitiy functions for * Program 2, CS 202, Fall 2002. * For description, see assignment. * */ #ifndef BIT_UTILS_HH_ #define BIT_UTILS_HH_ #include using namespace std; /* The following functions are in bit_utils.cc */ int get_bit(istream& myin); void put_bit(ostream& myout, int b); void put_finish(ostream& myout); #endif