summaryrefslogtreecommitdiff
path: root/src/tibfunction.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tibfunction.h')
-rw-r--r--src/tibfunction.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/tibfunction.h b/src/tibfunction.h
index e3383dc..29d80b7 100644
--- a/src/tibfunction.h
+++ b/src/tibfunction.h
@@ -1,6 +1,6 @@
/*
* libtib - Read, write, and evaluate TI BASIC programs
- * Copyright (C) 2015-2016 Delwink, LLC
+ * Copyright (C) 2015-2017 Delwink, LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
@@ -23,21 +23,21 @@
#include "tibexpr.h"
#include "tibtype.h"
-typedef TIB *(*tib_Function) (const struct tib_expr *);
+typedef TIB *(*tib_Function)(const struct tib_expr *);
int
-tib_registry_init (void);
+tib_registry_init(void);
void
-tib_registry_free (void);
+tib_registry_free(void);
int
-tib_registry_add (int key, tib_Function f);
+tib_registry_add(int key, tib_Function f);
bool
-tib_is_func (int key);
+tib_is_func(int key);
TIB *
-tib_call (int key, const struct tib_expr *expr);
+tib_call(int key, const struct tib_expr *expr);
#endif