summaryrefslogtreecommitdiffstats
path: root/src/lex.h
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2014-08-24 21:06:09 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2014-08-24 21:06:09 +0200
commit9855a34f48acf6ae3aaeba9ec37756da41507e64 (patch)
treea02c2a507b3d536182d81e78b878b6b29c617cb9 /src/lex.h
parent1ae3aae35193dce25e5534b12a46011ec7912bb4 (diff)
downloadfastd-9855a34f48acf6ae3aaeba9ec37756da41507e64.tar
fastd-9855a34f48acf6ae3aaeba9ec37756da41507e64.zip
Coding style: always add a space between a pointer's type and the *
Diffstat (limited to 'src/lex.h')
-rw-r--r--src/lex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lex.h b/src/lex.h
index 53ecce2..65a339b 100644
--- a/src/lex.h
+++ b/src/lex.h
@@ -38,7 +38,7 @@
#include <stdio.h>
-fastd_lex_t* fastd_lex_init(FILE *file);
+fastd_lex_t * fastd_lex_init(FILE *file);
void fastd_lex_destroy(fastd_lex_t *lex);
int fastd_lex(YYSTYPE *yylval, YYLTYPE *yylloc, fastd_lex_t *lex);