mirror of
https://github.com/stupidcomputer/jsfw.git
synced 2024-12-26 21:42:23 -06:00
9 lines
140 B
C
9 lines
140 B
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
|