/* * Copyright (c) 2002 Sendmail, Inc. and its suppliers. * All rights reserved. * * By using this file, you agree to the terms and conditions set * forth in the LICENSE file which can be found at the top level of * the sendmail distribution. */ #include "sm/generic.h" SM_RCSID("@(#)$Id: fputcstr.c,v 1.3 2006/07/14 14:42:25 ca Exp $") #include "sm/error.h" #include "sm/io.h" #include "sm/assert.h" #include "sm/cstr.h" #include "io-int.h" #include "fvwrite.h" #if !SM_NO_CSTR /* ** SM_IO_FPUTCSTR -- add a cstr to the buffer for the file pointer ** ** Parameters: ** fp -- the file pointer for the buffer to be written to ** cstr -- cstr to be placed in the buffer ** ** Returns: ** usual sm_error code */ sm_ret_T sm_io_fputcstr(sm_file_T *fp, const sm_cstr_P cstr) { sm_uio_T uio; sm_iov_T iov; SM_IS_FP(fp); iov.iov_base = (void *) sm_cstr_data(cstr); iov.iov_len = uio.uio_resid = sm_cstr_getlen(cstr); uio.uio_iov = &iov; uio.uio_iovcnt = 1; return sm_fvwrite(fp, &uio); } #endif /* !SM_NO_CSTR */