summaryrefslogtreecommitdiff
path: root/src/scale.h
blob: 47cb8095280d7a0e793b0a3c7ee6b106f5d0f9f0 (plain)
1
2
3
4
5
6
7
8
9
#ifndef SCALE_H
#define SCALE_H

#include <stdint.h>

uint32_t scale_apply(uint32_t base, uint32_t scale);
uint32_t scale_apply_inverse(uint32_t base, uint32_t scale);

#endif /* SCALE_H */