summaryrefslogtreecommitdiff
path: root/pkg/openbsd/include/util.h
blob: adc9b375b5f69e09de627bd629d24aabf731cc81 (plain)
1
2
3
4
5
6
7
8
9
#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