summaryrefslogtreecommitdiff
path: root/src/tibeval.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tibeval.h')
-rw-r--r--src/tibeval.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/tibeval.h b/src/tibeval.h
index 0257aae..c1b1f83 100644
--- a/src/tibeval.h
+++ b/src/tibeval.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
@@ -24,36 +24,36 @@
#include "tibtype.h"
bool
-is_sign_operator (int c);
+is_sign_operator(int c);
bool
-is_math_operator (int c);
+is_math_operator(int c);
unsigned int
-sign_count (const struct tib_expr *expr);
+sign_count(const struct tib_expr *expr);
bool
-contains_i (const struct tib_expr *expr);
+contains_i(const struct tib_expr *expr);
TIB *
-tib_eval (const struct tib_expr *expr);
+tib_eval(const struct tib_expr *expr);
int
-tib_eval_surrounded (const struct tib_expr *expr);
+tib_eval_surrounded(const struct tib_expr *expr);
bool
-tib_eval_isnum (const struct tib_expr *expr);
+tib_eval_isnum(const struct tib_expr *expr);
bool
-tib_eval_isstr (const struct tib_expr *expr);
+tib_eval_isstr(const struct tib_expr *expr);
bool
-tib_eval_islist (const struct tib_expr *expr);
+tib_eval_islist(const struct tib_expr *expr);
bool
-tib_eval_ismatrix (const struct tib_expr *expr);
+tib_eval_ismatrix(const struct tib_expr *expr);
int
-tib_eval_close_parens (struct tib_expr *expr);
+tib_eval_close_parens(struct tib_expr *expr);
#endif