Closed dumblob closed 9 years ago
It seems, that the separate DString_FindChar() in DaoFile_WriteString() might be eliminated, because fprintf() already reads arguments until \0 and returns the number of bytes written (except for the \0 itself).
DString_FindChar()
DaoFile_WriteString()
fprintf()
\0
Done.
It seems, that the separate
DString_FindChar()
inDaoFile_WriteString()
might be eliminated, becausefprintf()
already reads arguments until\0
and returns the number of bytes written (except for the\0
itself).