Toggle navigation
Ocean Color Science Software
Jump to content
ocssw
V2022
web
ocssw
ocssw_src
src
misc
remove_cr.c
Go to the documentation of this file.
1
#include <stdio.h>
2
3
int
main
(
int
argc,
char
* argv[]) {
4
int
tmp
;
5
while
((
tmp
= getchar()) != EOF) {
6
if
(
tmp
!=
'\r'
) {
7
putchar(
tmp
);
8
}
9
}
10
return
0;
11
}
12
tmp
data_t tmp
Definition:
decode_rs.h:74
main
int main(int argc, char *argv[])
Definition:
remove_cr.c:3