2 * Copyright (c) 1990 The Regents of the University of California.
5 * Redistribution and use in source and binary forms are permitted
6 * provided that the above copyright notice and this paragraph are
7 * duplicated in all such forms and that any documentation,
8 * and/or other materials related to such
9 * distribution and use acknowledge that the software was developed
10 * by the University of California, Berkeley. The name of the
11 * University may not be used to endorse or promote products derived
12 * from this software without specific prior written permission.
13 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
20 <<fputs>>, <<fputs_unlocked>>---write a character string in a file or stream
33 int fputs(const char *restrict <[s]>, FILE *restrict <[fp]>);
37 int fputs_unlocked(const char *restrict <[s]>, FILE *restrict <[fp]>);
40 int _fputs_r(struct _reent *<[ptr]>, const char *restrict <[s]>, FILE *restrict <[fp]>);
43 int _fputs_unlocked_r(struct _reent *<[ptr]>, const char *restrict <[s]>, FILE *restrict <[fp]>);
46 <<fputs>> writes the string at <[s]> (but without the trailing null)
47 to the file or stream identified by <[fp]>.
49 <<fputs_unlocked>> is a non-thread-safe version of <<fputs>>.
50 <<fputs_unlocked>> may only safely be used within a scope
51 protected by flockfile() (or ftrylockfile()) and funlockfile(). This
52 function may safely be used in a multi-threaded program if and only
53 if they are called while the invoking thread owns the (FILE *)
54 object, as is the case after a successful call to the flockfile() or
55 ftrylockfile() functions. If threads are disabled, then
56 <<fputs_unlocked>> is equivalent to <<fputs>>.
58 <<_fputs_r>> and <<_fputs_unlocked_r>> are simply reentrant versions of the
59 above that take an additional reentrant struct pointer argument: <[ptr]>.
62 If successful, the result is <<0>>; otherwise, the result is <<EOF>>.
65 ANSI C requires <<fputs>>, but does not specify that the result on
66 success must be <<0>>; any non-negative value is permitted.
68 <<fputs_unlocked>> is a GNU extension.
70 Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>,
71 <<lseek>>, <<read>>, <<sbrk>>, <<write>>.
80 #ifdef __IMPL_UNLOCKED__
81 #define _fputs_r _fputs_unlocked_r
82 #define fputs fputs_unlocked
86 * Write the given string to the given file.
89 _fputs_r (struct _reent
* ptr
,
90 char const *__restrict s
,
93 #ifdef _FVWRITE_IN_STREAMIO
99 iov
.iov_len
= uio
.uio_resid
= strlen (s
);
105 _newlib_flockfile_start (fp
);
106 if (ORIENT (fp
, -1) != -1)
109 result
= __sfvwrite_r (ptr
, fp
, &uio
);
110 _newlib_flockfile_end (fp
);
117 _newlib_flockfile_start (fp
);
118 /* Make sure we can write. */
119 if (cantwrite (ptr
, fp
))
124 if (__sputc_r (ptr
, *p
++, fp
) == EOF
)
127 _newlib_flockfile_exit (fp
);
131 _newlib_flockfile_end (fp
);
138 fputs (char const *__restrict s
,
141 return _fputs_r (_REENT
, s
, fp
);
143 #endif /* !_REENT_ONLY */