jerseyman4.listASCII text, with CRLF line terminators
1c1< Log file created at: 2019-01-11 02:56:19.683818---> Log file created at: Fri Jan 11 03:44:42 20196c6< Note: deprecated route name I-270_SPUR -> canonical name I-270SprAsh in line MD I-270_SPUR I-495 2---> Note: deprecated route name I-270_SPUR -> canonical name I-270SprAsh in line MD I-270_SPUR I-495 2 22c22< Note: deprecated route name I-840FutWGr -> canonical name I-840 in line NC I-840FutWGr 1 3---> Note: deprecated route name I-840FutWGr -> canonical name I-840 in line NC I-840FutWGr 1 3 50c50< Note: deprecated route name US72_E -> canonical name US72Cha in line TN US72_E AL/TN I-24(152)---> Note: deprecated route name US72_E -> canonical name US72Cha in line TN US72_E AL/TN I-24(152)
Spaces (?) at end of lines in C++ version
| char * endchar = lines[l+1]-2; // -2 skips over the 0 inserted by strtok |
| if (*endchar == 0) endchar--; // skip back one more for CRLF cases FIXME what about lines followed by blank lines? |
| while (*endchar == '' || *endchar == '\t') |
| { *endchar = 0; |
| endchar--; |
| } |
endchar is in amongst a sea of
\0s, not whitespace; never trimmed.
WontFix.
jerseyman4.listASCII text, with CRLF line terminators
Spaces (?) at end of lines in C++ version
DataProcessing/siteupdate/cplusplus/classes/TravelerList/TravelerList.cpp
Lines 91 to 96 in 652efe3
endcharis in amongst a sea of\0s, not whitespace; never trimmed.WontFix.