// Michael J. Fischer // CPSC 223b, Spring 2008 // Problem set 8: Hamming code #ifndef HAMMING_H_ #define HAMMING_H_ // prototypes unsigned int encode( unsigned int data ); unsigned int decode( unsigned int codeword ); #endif /*HAMMING_H_*/