mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
10 lines
280 B
C
10 lines
280 B
C
#include <stdint.h>
|
|
#include <string.h>
|
|
|
|
#define PSYC_EPOCH 1440444041 // 2015-08-24 21:20:41 CET (Monday)
|
|
|
|
/** @brief Checks if short keyword string matches long keyword string
|
|
*/
|
|
int PSYC_matches(uint8_t* sho, unsigned int slen,
|
|
uint8_t* lon, unsigned int llen);
|
|
|