aboutsummaryrefslogtreecommitdiff
path: root/toys/example/demo_number.c
blob: fce18f1144ff608f50258184d9c39618b74d37ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* demo_number.c - Expose atolx() and human_readable() for testing.
 *
 * Copyright 2015 Rob Landley <rob@landley.net>

USE_DEMO_NUMBER(NEWTOY(demo_number, "hdbs", TOYFLAG_BIN))

config DEMO_NUMBER
  bool "demo_number"
  default n
  help
    usage: demo_number [-hsbi] NUMBER...

    -b	Use "B" for single byte units (HR_B)
    -d	Decimal units
    -h	Human readable
    -s	Space between number and units (HR_SPACE)
*/

#include "toys.h"

void demo_number_main(void)
{
  char **arg;

  for (arg = toys.optargs; *arg; arg++) {
    long long ll = atolx(*arg);

    if (toys.optflags) {
      human_readable(toybuf, ll, toys.optflags);
      xputs(toybuf);
    } else printf("%lld\n", ll);
  }
}