summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools/src2html.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/src2html.c')
-rw-r--r--src/tools/src2html.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/tools/src2html.c b/src/tools/src2html.c
index c5ce5699fd8..3dea306b757 100644
--- a/src/tools/src2html.c
+++ b/src/tools/src2html.c
@@ -57,9 +57,9 @@
CONSTANTS & DEFINES
***************************************************************************/
-#define PREPROC_CLASS "preproc"
-#define KEYWORD_CLASS "keyword"
-#define CUSTOM_CLASS "custom"
+#define PREPROC_CLASS "preproc"
+#define KEYWORD_CLASS "keyword"
+#define CUSTOM_CLASS "custom"
@@ -79,29 +79,29 @@ enum file_type
struct ext_to_type
{
- const char * extension;
- file_type type;
+ const char * extension;
+ file_type type;
};
struct token_entry
{
- const char * token;
- const char * color;
+ const char * token;
+ const char * color;
};
struct include_path
{
- include_path * next;
- astring path;
+ include_path * next;
+ astring path;
};
struct list_entry
{
- list_entry * next;
- astring name;
+ list_entry * next;
+ astring name;
};