16 lines
218 B
C
16 lines
218 B
C
|
|
||
|
#ifndef CRYPTOAUTHLIB_INIT_H
|
||
|
#define CRYPTOAUTHLIB_INIT_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void init_cryptoauthlib(uint8_t i2c_addr);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} //extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#endif //CRYPTOAUTHLIB_INIT_H
|