jsfw/util.h
2022-08-30 01:06:25 +02:00

10 lines
156 B
C

// vi: set ft=c
#ifndef UTIL_H
#define UTIL_H
#include <stdint.h>
unsigned long log2lu(unsigned long);
uint32_t rotl (uint32_t n, unsigned int c);
#endif