OB.DAAC Logo
NASA Logo
Ocean Color Science Software

ocssw V2022
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 
data_t tmp
Definition: decode_rs.h:74
int main(int argc, char *argv[])
Definition: remove_cr.c:3