jsfw/util.h

10 lines
156 B
C
Raw Normal View History

2022-08-29 18:06:25 -05:00
// vi: set ft=c
2022-08-29 17:27:03 -05:00
#ifndef UTIL_H
#define UTIL_H
#include <stdint.h>
unsigned long log2lu(unsigned long);
uint32_t rotl (uint32_t n, unsigned int c);
#endif