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.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/d_enum.h b/src/d_enum.h
new file mode 100644
index 0000000..921195f
--- /dev/null
+++ b/src/d_enum.h
@@ -0,0 +1,48 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* 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
+*/
+
+enum
+{
+ FT_RET_FINE,
+ FT_RET_ALLOC
+};
+
+enum
+{
+ FT_WRITE_END,
+ FT_READ_END
+};
+
+enum
+{
+ FT_ID_ECHO,
+ FT_ID_CD,
+ FT_ID_PWD,
+ FT_ID_EXPORT,
+ FT_ID_UNSET,
+ FT_ID_ENV,
+ FT_ID_EXIT,
+ FT_ID_TYPE,
+ FT_BUILTINS_COUNT
+};
+
+#endif