code style

Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>
This commit is contained in:
Hiltjo Posthuma
2014-06-01 14:59:47 +02:00
committed by sin
parent 97ca7c8b6d
commit 953ebf3573
35 changed files with 58 additions and 94 deletions

4
fold.c
View File

@@ -58,7 +58,7 @@ main(int argc, char *argv[])
return EXIT_SUCCESS;
}
void
static void
fold(FILE *fp, long width)
{
char *buf = NULL;
@@ -69,7 +69,7 @@ fold(FILE *fp, long width)
free(buf);
}
void
static void
foldline(const char *str, long width)
{
bool space;