Subversion Repositories Games.Carmageddon

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef _BSWAP_H_
  2. #define _BSWAP_H_
  3.  
  4. #include "brender/br_types.h"
  5.  
  6. br_uint_32 BrSwap32(br_uint_32 l);
  7.  
  8. br_uint_16 BrSwap16(br_uint_16 s);
  9.  
  10. br_float BrSwapFloat(br_float f);
  11.  
  12. void* BrSwapBlock(void* block, int count, int size);
  13.  
  14. #endif
  15.