This is stripheader.c in view mode; [Download] [Up]
#include <stdio.h>
#include <carl/carl.h>
main(argc, argv)
char **argv;
{
float x;
int otty = isatty(1);
noautocp();
if (otty) {
while (getfloat(&x) > 0)
printf("%f\n", x);
} else {
while (getfloat(&x) > 0)
putfloat(&x);
}
if (!otty)
flushfloat();
exit(0);
}
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.