summaryrefslogtreecommitdiff
path: root/i_validation.h
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-03-21 11:55:43 +0100
committerOskar <[email protected]>2024-03-21 11:55:43 +0100
commit713f7440b97c70357bb507458305cb05e312f1f6 (patch)
tree8c5c03423a9162604233ad22a89741fff862ce7c /i_validation.h
parentf39f7fec07bdbe40eb1e97533d981cf67710a423 (diff)
added i_validation.c and i_validation.h to make the code a bit easier and readable. Its my preparation for when i start dividing the validation functions in to smaller pieces
Diffstat (limited to 'i_validation.h')
-rw-r--r--i_validation.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/i_validation.h b/i_validation.h
new file mode 100644
index 0000000..a7a7fe4
--- /dev/null
+++ b/i_validation.h
@@ -0,0 +1,11 @@
+#include <stdlib.h>
+#include <stdio.h>
+#include <unistd.h>
+#include <string.h>
+#include <errno.h>
+#include "7ed.h"
+#include <stdint.h>
+
+int validate_L(char *smode_buf);
+
+int validate_N(char *smode_buf); \ No newline at end of file