repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Uninitialized vector entry?
[minix3.git]
/
lib
/
stdio
/
fputs.c
blob
99fe5a7129fbbf9d7795f5395e6b02c40e6fb84a
1
/*
2
* fputs - print a string
3
*/
4
/* $Header$ */
5
6
#include <stdio.h>
7
8
int
9
fputs
(
register
const char
*
s
,
register
FILE
*
stream
)
10
{
11
register
int
i
=
0
;
12
13
while
(*
s
)
14
if
(
putc
(*
s
++,
stream
) ==
EOF
)
return
EOF
;
15
else
i
++;
16
17
return
i
;
18
}