view toys/other/factor.c @ 1433:00c20f410c46 draft

Patches to commands for issues reported from static analysis tool. portability.h.patch - it is for O_CLOEXEC, as compiler complained of it. Makefile.patch - for cleaning generated/*.o files and libopts.dat file [Fixup to uniq.c from Rob.]
author Ashwini Sharma <ak.ashwini1981@gmail.com>
date Tue, 12 Aug 2014 07:09:01 -0500
parents dd336488a69b
children 89384d54d49a
line wrap: on
line source

/* factor.c - Factor integers
 *
 * Copyright 2014 Rob Landley <rob@landley.net>
 *
 * No standard, but it's in coreutils

USE_FACTOR(NEWTOY(factor, 0, TOYFLAG_USR|TOYFLAG_BIN))

config FACTOR
  bool "factor"
  default y
  help
    usage: factor NUMBER...

    Factor integers.
*/

#include "toys.h"

static void factor(char *s)
{
  long l, ll;

  l = strtol(s, &s, 0);
  if (*s) {
    error_msg("%s: not integer");
    return;
  }

  printf("%ld:", l);

  // Negative numbers have -1 as a factor
  if (l < 0) {
    printf(" -1");
    l *= -1;
  }

  // Deal with 0 and 1 (and 2 since we're here)
  if (l < 3) {
    printf(" %ld\n", l);
    return;
  }

  // Special case factors of 2
  while (l && !(l&1)) {
    printf(" 2");
    l >>= 1;
  }

  // test odd numbers.
  for (ll=3; ;ll += 2) {
    long lll = ll*ll;

    if (lll>l || lll<ll) {
      if (l>1) printf(" %ld", l);
      break;
    }
    while (!(l%ll)) {
      printf(" %ld", ll);
      l /= ll;
    }
  }
  xputc('\n');
}

void factor_main(void)
{
  if (toys.optc) {
    char **ss;

    for (ss = toys.optargs; *ss; ss++) factor(*ss);
  } else for (;;) {
    char *s = 0;
    size_t len = 0;

    if (-1 == getline(&s, &len, stdin)) break;
    factor(s);
  }
}