home *** CD-ROM | disk | FTP | other *** search
- /*
- ** prnputc.c
- **
- ** Pictor, Version 1.51, Copyright (c) 1992-94 SoftCircuits
- ** Redistributed by permission.
- */
-
- #include "pictor.h"
-
- /*
- ** Writes a character to the standard list device.
- ** Returns 0 if successfull or a non-zero value if an error occurred.
- */
- int prnputc(char c)
- {
- return(prnwrite(&c,1));
-
- } /* prnputc */
-
-
-