]> git.donarmstrong.com Git - mothur.git/blobdiff - mothur.h
bugs for 1.5
[mothur.git] / mothur.h
index 7d6b1d88f7c74af97bf245056c8a5c74c1774050..5b519bb2111d27259d1969f81e41b805e4a33935 100644 (file)
--- a/mothur.h
+++ b/mothur.h
@@ -180,7 +180,7 @@ inline string getline(ifstream& fileHandle) {
                        char c = fileHandle.get(); 
                        
                        //are you at the end of the line
-                       if (c == 10 || c == 13){   break;       }       
+                       if ((c == '\n') || (c == '\r') || (c == '\f')){   break;        }       
                        else {          line += c;              }
                }