Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make each plain text file end with a newline #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ build
bin
nbproject/
*.a
*.o
*.o
2 changes: 1 addition & 1 deletion src/blast.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -441,4 +441,4 @@ int main(void)
/* return blast() error code */
return ret;
}
#endif
#endif
2 changes: 1 addition & 1 deletion src/blast.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ int blast(blast_in infun, void *inhow, blast_out outfun, void *outhow);
*
* At the bottom of blast.c is an example program that uses blast() that can be
* compiled to produce a command-line decompression filter by defining TEST.
*/
*/
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ int main(int argc, char** argv)
}

return 0;
}
}