about summary refs log tree commit diff stats
path: root/util.h
diff options
context:
space:
mode:
authorDaniel <steew0x8@protonmail.com>2021-11-03 23:38:02 +0100
committerDaniel <steew0x8@protonmail.com>2021-11-03 23:38:02 +0100
commite7748c3eb607ace655bc48d807cbbc116960a611 (patch)
treed2009a40f204993c13372a26e5b69c9839e02d52 /util.h
parentd465d6e672eba42da6e2dd729e02e6b78b0bf22a (diff)
downloadrpncalc-e7748c3eb607ace655bc48d807cbbc116960a611.tar.gz
accidentally deleted header files
Diffstat (limited to 'util.h')
-rw-r--r--util.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/util.h b/util.h
new file mode 100644
index 0000000..18fb507
--- /dev/null
+++ b/util.h
@@ -0,0 +1,7 @@
+#ifndef UTIL_H
+#define UTIL_H
+
+typedef enum {OPERATOR, DOUBLE, FUNCTION} TYPE;
+int discriminate(char *s);
+
+#endif