8 lines
163 B
C
8 lines
163 B
C
#ifndef __UTILS_H__
|
|
#define __UTILS_H__
|
|
#include <stdint.h>
|
|
|
|
uint32_t _udiv64(uint64_t n, uint32_t d);
|
|
int printf(const char *fmt, ...);
|
|
|
|
#endif /* __UTILS_H__ */
|