1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef CONSUMER_H_ #define CONSUMER_H_ #include "request.h" #include "storage.h" #ifdef __cplusplus extern "C" { #endif void sid_consumer_authenticate (sid_request_t *req, sid_storage_t *store, const char *trust_root, const char *identity); #ifdef __cplusplus } /* extern "C" */ #endif #endif /* CONSUMER_H_ */