Import sendmail 8.13.7
[dragonfly.git] / contrib / sendmail-8.13.7 / libsm / put.c
blobd513b98b3ccd69434f823c13708947f3716f005f
1 /*
2 * Copyright (c) 2000-2001 Sendmail, Inc. and its suppliers.
3 * All rights reserved.
4 * Copyright (c) 1990, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
8 * Chris Torek.
10 * By using this file, you agree to the terms and conditions set
11 * forth in the LICENSE file which can be found at the top level of
12 * the sendmail distribution.
15 #include <sm/gen.h>
16 SM_RCSID("@(#)$Id: put.c,v 1.27 2001/12/19 05:19:35 ca Exp $")
17 #include <string.h>
18 #include <errno.h>
19 #include <sm/io.h>
20 #include <sm/assert.h>
21 #include <sm/errstring.h>
22 #include <sm/string.h>
23 #include "local.h"
24 #include "fvwrite.h"
27 ** SM_IO_PUTC -- output a character to the file
29 ** Function version of the macro sm_io_putc (in <sm/io.h>).
31 ** Parameters:
32 ** fp -- file to output to
33 ** timeout -- time to complete putc
34 ** c -- int value of character to output
36 ** Returns:
37 ** Failure: returns SM_IO_EOF _and_ sets errno
38 ** Success: returns sm_putc() value.
42 #undef sm_io_putc
44 int
45 sm_io_putc(fp, timeout, c)
46 SM_FILE_T *fp;
47 int timeout;
48 int c;
50 SM_REQUIRE_ISA(fp, SmFileMagic);
51 if (cantwrite(fp))
53 errno = EBADF;
54 return SM_IO_EOF;
56 return sm_putc(fp, timeout, c);
61 ** SM_PERROR -- print system error messages to smioerr
63 ** Parameters:
64 ** s -- message to print
66 ** Returns:
67 ** none
70 void
71 sm_perror(s)
72 const char *s;
74 int save_errno = errno;
76 if (s != NULL && *s != '\0')
77 (void) sm_io_fprintf(smioerr, SM_TIME_DEFAULT, "%s: ", s);
78 (void) sm_io_fprintf(smioerr, SM_TIME_DEFAULT, "%s\n",
79 sm_errstring(save_errno));