summaryrefslogtreecommitdiff
path: root/qstd/str.h
blob: da9bf3681686a4e93da0dfdaf4151dab8fff62ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef str_h
#define str_h

#include <stddef.h>
#include <stdint.h>

uint64_t fnv1a64(uint8_t* buf, size_t size);
uint32_t hash_string(const char* s);

#endif