##
while ( ::fgets(line, MAX_LINE_LEN_L, fh) != NULL ) {
found = ::strchr(line, '\t');
count = ::atoll( &line[found - line + 1] );
line[found - line] = '\0'; // word
...
}
##
##
::memcpy( fixword.data(), line, found - line );