|
|
1.1 ! root 1: #include <stdio.h> ! 2: #include "mprec.h" ! 3: ! 4: ! 5: /* ! 6: * Mout writes on stdout the value of the mint pointed to by "a" ! 7: * in base "obase". ! 8: */ ! 9: ! 10: void ! 11: mout(a) ! 12: mint *a; ! 13: { ! 14: register char *res; ! 15: char *mark; ! 16: register int len; ! 17: ! 18: mark = res = mtos(a); ! 19: for (len = strlen(res) / 72; len-- > 0; res += 72) ! 20: printf("%.72s\\\n", res); ! 21: printf("%s", res); ! 22: mpfree(mark); ! 23: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.