Exemplo n.º 1
0
static void outNum_spi(unsigned id, long n) {
    char buf[BITS/2];

    bufNum(buf, n);
    outString_spi(id, buf);
}
Exemplo n.º 2
0
static void outNum_term(long n) {
  char buf[BITS/2];

  bufNum(buf, n);
  outString_term(buf);
}