9 lines
136 B
C
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 |