mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-22 03:13:28 +00:00
10 lines
188 B
C++
10 lines
188 B
C++
#ifndef _STREAMSUPPORT
|
|
#define _STREAMSUPPORT
|
|
#include <types.h>
|
|
|
|
static inline uint min_containing_bytes(uint bits) {
|
|
return (bits / 8) + ((bits % 8) != 0);
|
|
}
|
|
|
|
#endif // _STREAMSUPPORT
|