Skip to content
Snippets Groups Projects
Commit 28206ae2 authored by Benny Baumann's avatar Benny Baumann
Browse files

add: TODO on newline handling

parent 6e379f64
No related branches found
No related tags found
1 merge request!1First unit tests
......@@ -13,6 +13,7 @@ std::string::size_type default_eol_search(
const std::string &data,
std::string::size_type start_position
) {
// TODO byte stuffing support implementieren bzw. Escaping von newline char; gerne auch als separate Suchfunktion
const std::string::size_type s = data.size();
for (std::string::size_type i = start_position; i < s; i++) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment