opkg

statically linked package installer
git clone anongit@rnpnr.xyz:opkg.git
Log | Files | Refs | Feed | Submodules | README | LICENSE

util.h (192B)


      1 #ifndef _UTIL_H_
      2 #define _UTIL_H_
      3 
      4 #define	FMT_SCALED_STRSIZE	7	/* minus sign, 4 digits, suffix, null byte */
      5 
      6 int fmt_scaled(long long, char *);
      7 int scan_scaled(char *, long long *);
      8 
      9 #endif