repo.or.cz
/
sunny256-utils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
std/c/README.md: Add section skeletons and don't indent lists
[sunny256-utils.git]
/
todos
blob
d8d10a9e8644a0df39d4af4535578b2a36c95604
1
#!/usr/bin/env perl
2
3
# todos
4
# File ID: 8e391288-5d46-11df-ac9f-90e6ba3022ac
5
# Konverterer fra UNIX til DOS
6
7
while
(<>) {
8
s/\r//g
;
9
s/\n/\r\n/g
;
10
print
;
11
}