Merge branch 'bugfix/md5_rom_header_types' into 'master'

md5_hash.h: Replace outdated use of c_types.h with stdint



See merge request !44
This commit is contained in:
Angus Gratton 2016-09-01 11:22:22 +08:00
commit 6367268f99

View file

@ -15,14 +15,16 @@
#ifndef _ROM_MD5_HASH_H_
#define _ROM_MD5_HASH_H_
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
struct MD5Context {
uint32 buf[4];
uint32 bits[2];
uint8 in[64];
uint32_t buf[4];
uint32_t bits[2];
uint8_t in[64];
};
void MD5Init(struct MD5Context *context);