summaryrefslogtreecommitdiffstats
path: root/src/d_enum.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/d_enum.h')
-rw-r--r--src/d_enum.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/d_enum.h b/src/d_enum.h
new file mode 100644
index 0000000..427e0a0
--- /dev/null
+++ b/src/d_enum.h
@@ -0,0 +1,41 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* d_enum.h :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */
+/* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */
+/* */
+/* ************************************************************************** */
+
+#ifndef D_ENUM_H
+#define D_ENUM_H
+
+/*
+** ret vals:
+** ---------
+** 0: cool
+** 1: alloc err
+*/
+
+typedef enum
+{
+ FALSE,
+ TRUE
+} t_bool;
+
+enum
+{
+ FT_RET_FINE,
+ FT_RET_ALLOC
+};
+
+enum
+{
+ FT_WRITE_END,
+ FT_READ_END
+};
+
+#endif