Skip to content

Commit 7a7a6a5

Browse files
committed
README.md
1 parent 23550d3 commit 7a7a6a5

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,10 +188,6 @@ char * csv_str = " test a , test b \n" // header names include leading and t
188188
CSV_Parser cp(csv_str, "cc");
189189
int8_t *a = (int8_t*)cp["test a"]; // notice how "test a" is used instead of " test a "
190190
int8_t *b = (int8_t*)cp["test b"];
191-
for (int i = 0; i < cp.getRowsCount(); i++) {
192-
Serial.println(a[i], DEC);
193-
Serial.println(b[i], DEC);
194-
}
195191
```
196192
197193
## Specifying value types

0 commit comments

Comments
 (0)