mirror of
https://github.com/stupidcomputer/jsfw.git
synced 2024-12-27 05:47:37 -06:00
10 lines
156 B
C
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
|