From 85ccab647708ff88e69b864e0a85835da401ec27 Mon Sep 17 00:00:00 2001 From: Jason Yundt Date: Mon, 20 Sep 2021 20:59:42 -0400 Subject: [PATCH] Make each plain text file end with a newline Having files end with a newline seems to be standard, see https://stackoverflow.com/questions/729692/why-should-text-files-end-with-a-newline --- .gitignore | 2 +- src/blast.cpp | 2 +- src/blast.h | 2 +- src/main.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 98e1076..20f26f8 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,4 @@ build bin nbproject/ *.a -*.o \ No newline at end of file +*.o diff --git a/src/blast.cpp b/src/blast.cpp index 77196af..4ce697a 100644 --- a/src/blast.cpp +++ b/src/blast.cpp @@ -441,4 +441,4 @@ int main(void) /* return blast() error code */ return ret; } -#endif \ No newline at end of file +#endif diff --git a/src/blast.h b/src/blast.h index da2d39e..ce9e541 100644 --- a/src/blast.h +++ b/src/blast.h @@ -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. - */ \ No newline at end of file + */ diff --git a/src/main.cpp b/src/main.cpp index 4fd875a..025be6e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -42,4 +42,4 @@ int main(int argc, char** argv) } return 0; -} \ No newline at end of file +}