How can I use like this code with teensy?
Code:ch = getc(in_file); /*convert the one digit integer currently represented as a character to an integer(48 == '0')*/ while(getc(in_file) != '\n'); /* skip to end of line*/ while (getc(in_file) == '#') /* skip comment lines */ { while (getc(in_file) != '\n'); /* skip to end of comment line */ }