www.pudn.com > CMDL.zip > OUTPUT.CPP
/*************************************************************** File: OUTPUT.CPP Copyright 1992 by Dlugosz Software part of the CMDL package for command-line parsing handles output of messages. replace these functions to suit. This version may be used freely, with attribution. ***************************************************************/ #include "usual.h" #include "cmdl.h" #include#include void cmdl::output (const char* s) { if (s) fputs (s, stderr); } void cmdl::output (char c) { fputc (c, stderr); }