Kintsugi OS 0.4.0
x86 Monolithic OS
Loading...
Searching...
No Matches
math.h
Go to the documentation of this file.
1/*------------------------------------------------------------------------------
2 * Kintsugi OS KKLIBC source code
3 * File: kklibc/mem.h
4 * Title: Набор математических функций и алгоритмов (заголовчный файл)
5 * Description: null
6 * ----------------------------------------------------------------------------*/
7#ifndef KKLIBC_MATH_H
8#define KKLIBC_MATH_H
9
10#include "ctypes.h"
11
19int binary_pow(int b, u32 e);
20
21#endif
unsigned int u32
Definition ctypes.h:11
int binary_pow(int b, u32 e)
Возведение в степень
Definition math.c:9