Codebase list infnoise / 738f7fd
Add C linkage guard for exported symbols Juha Nikkanen 4 years ago
1 changed file(s) with 8 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
1313 // The FT240X has a 512 byte buffer. Must be multiple of 64
1414 // We also write this in one go to the Keccak sponge, which is at most 1600 bits
1515 #define BUFLEN 512u
16
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
1620
1721 #if !defined(_WIN32)
1822 struct infnoise_context {
8690 */
8791 uint32_t readData(struct infnoise_context *context, uint8_t *result, bool raw, uint32_t outputMultiplier);
8892
93 #ifdef __cplusplus
94 }
8995 #endif
96
97 #endif