123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #ifndef STAT_H
- #define STAT_H
- #include "datatypes.h" /* for uint8_t */
- #include "err.h" /* for srtp_err_status_t */
- #ifdef __cplusplus
- extern "C" {
- #endif
- srtp_err_status_t stat_test_monobit(uint8_t *data);
- srtp_err_status_t stat_test_poker(uint8_t *data);
- srtp_err_status_t stat_test_runs(uint8_t *data);
- #ifdef __cplusplus
- }
- #endif
- #endif
|