mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 08:25:18 +01:00
7 lines
127 B
C
7 lines
127 B
C
|
#ifndef __SHA256_H
|
||
|
#define __SHA256_H
|
||
|
|
||
|
void sha256sum (unsigned char *data, unsigned int length, unsigned char *hash);
|
||
|
|
||
|
#endif
|