mirror of
https://github.com/ksherlock/profuse.git
synced 2024-12-23 11:31:43 +00:00
1b6a7fab18
git-svn-id: https://profuse.googlecode.com/svn/trunk@12 aa027e90-d47c-11dd-86d7-074df07e0730
49 lines
721 B
C
49 lines
721 B
C
/*
|
|
* common.h
|
|
* ProFUSE
|
|
*
|
|
* Created by Kelvin Sherlock on 12/20/08.
|
|
*
|
|
*/
|
|
|
|
#ifndef __COMMON_H__
|
|
#define __COMMON_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
#define BLOCK_SIZE 512
|
|
|
|
// little endian.
|
|
|
|
inline unsigned load16(const uint8_t *cp)
|
|
{
|
|
return (cp[1] << 8 ) | cp[0];
|
|
}
|
|
|
|
inline unsigned load24(const uint8_t *cp)
|
|
{
|
|
return (cp[2] << 16 ) | (cp[1] << 8) | (cp[0]);
|
|
}
|
|
|
|
inline unsigned load32(const uint8_t *cp)
|
|
{
|
|
return (cp[3] << 24) | (cp[2] << 16 ) | (cp[1] << 8) | (cp[0]);
|
|
}
|
|
|
|
|
|
// big endian format.
|
|
inline unsigned load16_be(const uint8_t *cp)
|
|
{
|
|
return (cp[0] << 8) | (cp[1]);
|
|
}
|
|
|
|
inline unsigned load32_be(const uint8_t *cp)
|
|
{
|
|
return (cp[0] << 24) | (cp[1] << 16) | (cp[2] << 8) | (cp[3]);
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|