Sign in
mojo
/
mojo-tools
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
stdio
/
fputs.c
blob: 4737f448e934ac18465c4f827b479edabcc180d4 [
file
] [
log
] [
blame
]
#include
"stdio_impl.h"
#include
<string.h>
int
fputs
(
const
char
*
restrict s
,
FILE
*
restrict f
)
{
return
(
int
)
fwrite
(
s
,
strlen
(
s
),
1
,
f
)
-
1
;
}
weak_alias
(
fputs
,
fputs_unlocked
);