getbits.h 326 B

12345678910111213
  1. /*
  2. * Giovanni Agosta, Andrea Di Biagio
  3. * Politecnico di Milano, 2007
  4. *
  5. * getbits.h
  6. * Formal Languages & Compilers Machine, 2007/2008
  7. *
  8. */
  9. #ifndef _GETBITS_H
  10. #define _GETBITS_H
  11. /* Estrae i bit di data da from a to come unsigned int */
  12. unsigned int getbits(unsigned int data, int from, int to);
  13. #endif /* _GETBITS_H */