🙈 Add cspell to gitignore and fix typos

This commit is contained in:
C-3PO 2018-10-25 15:26:32 +02:00
parent cbf60575df
commit 15ca59a6a6
Signed by: c3po
GPG key ID: 62993C4BB4D86F24
5 changed files with 24 additions and 5 deletions

View file

@ -55,7 +55,7 @@ void xdelta3Init(char* prevFile) {
}
/** Supplies the given input buffer to xdelta3 and undiffs the data. */
/** Supplies the given input buffer to xdelta3 and will undiff the data. */
void xdelta3AddInput(unsigned char* inputBuffer, unsigned int inputLength, bool isLastPart, FILE* targetFile) {
xd3_avail_input(&stream, inputBuffer, inputLength);

View file

@ -3,5 +3,5 @@
/** Initializes xdelta3 with the given previous file */
void xdelta3Init(char* prevFile);
/** Supplies the given input buffer to xdelta3 and undiffs the data. */
/** Supplies the given input buffer to xdelta3 and will undiff the data. */
void xdelta3AddInput(unsigned char* inputBuffer, unsigned int inputLength, bool isLastPart, FILE* targetFile);