mirror of
https://github.com/oasislinux/oasis.git
synced 2026-05-12 21:34:47 +02:00
10 lines
192 B
C
10 lines
192 B
C
#ifndef _UTIL_H_
|
|
#define _UTIL_H_
|
|
|
|
#define FMT_SCALED_STRSIZE 7 /* minus sign, 4 digits, suffix, null byte */
|
|
|
|
int fmt_scaled(long long, char *);
|
|
int scan_scaled(char *, long long *);
|
|
|
|
#endif
|