/
vuvk
/
tiny-render
Обзор
Документация
Войти
/
vuvk
/
tiny-render
Код
Запросы
0
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
include/libfixmath/uint32.h
19 строк
323 B
Vuvk
first version from 2017
03 май 2021, 11:09
03 май 2021, 11:09
84444c2
Код
Авторство
О чём код?
#ifndef __libfixmath_uint32_h__ #define __libfixmath_uint32_h__ #ifdef __cplusplus extern "C" { #endif #include <stdint.h> /*! Performs an unsigned log-base2 on the specified unsigned integer and returns the result. */ extern uint32_t uint32_log2(uint32_t inVal); #ifdef __cplusplus } #endif #endif