aboutsummaryrefslogtreecommitdiff
path: root/ctemplates.h
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2017-12-28 21:34:34 -0500
committerAlexander Pickering <alexandermpickering@gmail.com>2017-12-28 21:34:34 -0500
commit780fcb523eaa2feb3882967e7b2debf21aa569f2 (patch)
treeef92ac5e971763b370bff8b598e562479e827a2d /ctemplates.h
parent25dbc260962154cc07fa6e131d096bdcf55a6693 (diff)
downloadlibctemplates-780fcb523eaa2feb3882967e7b2debf21aa569f2.tar.gz
libctemplates-780fcb523eaa2feb3882967e7b2debf21aa569f2.tar.bz2
libctemplates-780fcb523eaa2feb3882967e7b2debf21aa569f2.zip
changed prototypes
Changed function prototypes that previously took no arguments like void dothing(); to void dothing(void);
Diffstat (limited to 'ctemplates.h')
-rw-r--r--ctemplates.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/ctemplates.h b/ctemplates.h
index 0e76fc3..a2d33a1 100644
--- a/ctemplates.h
+++ b/ctemplates.h
@@ -10,7 +10,6 @@
#define _CTEMPLATE_H
-
#include "fbuf.h"
#include "kmp.h"
#include "hashmap.h"
@@ -159,30 +158,6 @@ struct TMPL_fmtlist{
char* name;
} TMPL_fmtlist;
-struct TMPL_varlist;
-struct TMPL_loop;
-
-/*
- * TMPL_varlist is a variable list of simple variables and/or
- * loop variables
- */
-//struct TMPL_varlist {
- //struct TMPL_varlist *next; [> next variable list on a list <]
- //struct TMPL_var *var; [> list of my simple variables <]
- //struct TMPL_loop *loop; [> list of my loop variables <]
- //struct TMPL_loop *parent; [> my parent loop variable (if any) <]
-//};
-
-/* TMPL_loop is a loop variable, which is a list of variable lists */
-
-//struct TMPL_loop {
- //struct TMPL_loop *next; [> next loop variable on a list <]
- //const char *name; [> my name <]
- //struct TMPL_varlist *varlist; [> list of my variable lists <]
- //struct TMPL_varlist *tail; [> tail of "varlist" <]
- //struct TMPL_varlist *parent; [> my parent variable list <]
-//};
-
/* Holdes all the data needed for a template*/
struct TMPL_templates{
struct TMPL_buf* out;