sl@0: /* FVWRITE.H sl@0: * sl@0: * Portions Copyright (c) 1990-1999 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: */ sl@0: sl@0: /* sl@0: * Copyright (c) 1990 The Regents of the University of California. sl@0: * All rights reserved. sl@0: * sl@0: * Redistribution and use in source and binary forms are permitted sl@0: * provided that the above copyright notice and this paragraph are sl@0: * duplicated in all such forms and that any documentation, sl@0: * advertising materials, and other materials related to such sl@0: * distribution and use acknowledge that the software was developed sl@0: * by the University of California, Berkeley. The name of the sl@0: * University may not be used to endorse or promote products derived sl@0: * from this software without specific prior written permission. sl@0: * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR sl@0: * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED sl@0: * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. sl@0: */ sl@0: sl@0: /* %W% (Berkeley) %G% */ sl@0: #include <_ansi.h> sl@0: sl@0: /** sl@0: I/O descriptors for __sfvwrite(). sl@0: @internalComponent sl@0: */ sl@0: struct __siov { sl@0: const void * iov_base; sl@0: size_t iov_len; sl@0: }; sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: struct __suio { sl@0: struct __siov *uio_iov; sl@0: int uio_iovcnt; sl@0: int uio_resid; sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: extern int __sfvwrite (FILE *, struct __suio *); sl@0: extern int __swsetup (FILE *); sl@0: sl@0: