sl@0
|
1 |
/* FPUTS.C
|
sl@0
|
2 |
*
|
sl@0
|
3 |
* Portions Copyright (c) 1990-1999 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
4 |
* All rights reserved.
|
sl@0
|
5 |
*/
|
sl@0
|
6 |
|
sl@0
|
7 |
/*
|
sl@0
|
8 |
* Copyright (c) 1990 The Regents of the University of California.
|
sl@0
|
9 |
* All rights reserved.
|
sl@0
|
10 |
*
|
sl@0
|
11 |
* Redistribution and use in source and binary forms are permitted
|
sl@0
|
12 |
* provided that the above copyright notice and this paragraph are
|
sl@0
|
13 |
* duplicated in all such forms and that any documentation,
|
sl@0
|
14 |
* advertising materials, and other materials related to such
|
sl@0
|
15 |
* distribution and use acknowledge that the software was developed
|
sl@0
|
16 |
* by the University of California, Berkeley. The name of the
|
sl@0
|
17 |
* University may not be used to endorse or promote products derived
|
sl@0
|
18 |
* from this software without specific prior written permission.
|
sl@0
|
19 |
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
sl@0
|
20 |
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
sl@0
|
21 |
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
/*
|
sl@0
|
25 |
FUNCTION
|
sl@0
|
26 |
<<fputs>>---write a character string in a file or stream
|
sl@0
|
27 |
|
sl@0
|
28 |
INDEX
|
sl@0
|
29 |
fputs
|
sl@0
|
30 |
|
sl@0
|
31 |
ANSI_SYNOPSIS
|
sl@0
|
32 |
#include <stdio.h>
|
sl@0
|
33 |
int fputs(const char *<[s]>, FILE *<[fp]>);
|
sl@0
|
34 |
|
sl@0
|
35 |
TRAD_SYNOPSIS
|
sl@0
|
36 |
#include <stdio.h>
|
sl@0
|
37 |
int fputs(<[s]>, <[fp]>)
|
sl@0
|
38 |
char *<[s]>;
|
sl@0
|
39 |
FILE *<[fp]>;
|
sl@0
|
40 |
|
sl@0
|
41 |
DESCRIPTION
|
sl@0
|
42 |
<<fputs>> writes the string at <[s]> (but without the trailing null)
|
sl@0
|
43 |
to the file or stream identified by <[fp]>.
|
sl@0
|
44 |
|
sl@0
|
45 |
RETURNS
|
sl@0
|
46 |
If successful, the result is <<0>>; otherwise, the result is <<EOF>>.
|
sl@0
|
47 |
|
sl@0
|
48 |
PORTABILITY
|
sl@0
|
49 |
ANSI C requires <<fputs>>, but does not specify that the result on
|
sl@0
|
50 |
success must be <<0>>; any non-negative value is permitted.
|
sl@0
|
51 |
|
sl@0
|
52 |
Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>,
|
sl@0
|
53 |
<<lseek>>, <<read>>, <<sbrk>>, <<write>>.
|
sl@0
|
54 |
*/
|
sl@0
|
55 |
|
sl@0
|
56 |
#include <stdio.h>
|
sl@0
|
57 |
#include <string.h>
|
sl@0
|
58 |
#include "FVWRITE.H"
|
sl@0
|
59 |
|
sl@0
|
60 |
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
Write string to a stream.
|
sl@0
|
63 |
Writes string to the current position of the given stream.
|
sl@0
|
64 |
On error the function returns EOF.
|
sl@0
|
65 |
@param s Null-terminated string to be written.
|
sl@0
|
66 |
@param fp pointer to an open file.
|
sl@0
|
67 |
*/
|
sl@0
|
68 |
EXPORT_C int
|
sl@0
|
69 |
fputs (char const *s, FILE * fp)
|
sl@0
|
70 |
{
|
sl@0
|
71 |
struct __suio uio;
|
sl@0
|
72 |
struct __siov iov;
|
sl@0
|
73 |
|
sl@0
|
74 |
iov.iov_base = s;
|
sl@0
|
75 |
iov.iov_len = uio.uio_resid = strlen (s);
|
sl@0
|
76 |
uio.uio_iov = &iov;
|
sl@0
|
77 |
uio.uio_iovcnt = 1;
|
sl@0
|
78 |
return __sfvwrite (fp, &uio);
|
sl@0
|
79 |
}
|