log2fix 0.1.0

no_std fixed-point base 2, e and 10 logarithm algorithm implementation
Documentation
#ifndef LOG2FIX_H
#define LOG2FIX_H

#include <stddef.h>
#include <stdint.h>

#ifdef __cplusplus
extern "C" {
#endif

int32_t log2fix (uint32_t x, size_t precision);

int32_t logfix (uint32_t x, size_t precision);

int32_t log10fix (uint32_t x, size_t precision);

#ifdef __cplusplus
}
#endif

#endif // LOG2FIX_H