This website works better with JavaScript.
Home
Explore
Help
Sign In
Linux
/
st
generated from
gmarx/git-template
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
replace fwrite by printf.
master
Aurélien Aptel
12 years ago
parent
cb2e0e9c31
commit
ff5edcfd70
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
st.c
+ 1
- 1
st.c
View File
@ -1388,7 +1388,7 @@ csihandle(void) {
void
csidump
(
void
)
{
int
i
;
fwrite
(
"
ESC[
"
,
1
,
4
,
stdout
)
;
printf
(
"
ESC[
"
)
;
for
(
i
=
0
;
i
<
escseq
.
len
;
i
+
+
)
{
uint
c
=
escseq
.
buf
[
i
]
&
0xff
;
if
(
isprint
(
c
)
)
putchar
(
c
)
;
Write
Preview
Loading…
Cancel
Save