18 lines
248 B
C
18 lines
248 B
C
|
#ifndef Groestlcoinmodule_H__
|
||
|
#define Groestlcoinmodule_H__
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"{
|
||
|
#endif
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include "sph_types.h"
|
||
|
|
||
|
void GroestlCoinHash(const void *input, int length, void *output);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|