ESP32-PaxCounter/include/hash.h

9 lines
140 B
C
Raw Normal View History

2018-07-17 15:15:58 +02:00
#ifndef _HASH_H
#define _HASH_H
2018-07-15 14:28:05 +02:00
#include <Arduino.h>
2020-12-27 23:43:45 +01:00
#include <RokkitHash.h>
2018-07-15 14:28:05 +02:00
2021-03-04 21:22:49 +01:00
uint32_t IRAM_ATTR myhash(const char *data, int len);
#endif