ESP32-PaxCounter/include/hash.h
2020-12-27 00:36:23 +01:00

9 lines
136 B
C

#ifndef _HASH_H
#define _HASH_H
#include <Arduino.h>
#include <inttypes.h>
uint32_t IRAM_ATTR hash(const char *data, int len);
#endif