summaryrefslogtreecommitdiffstats
path: root/src/u_parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/u_parse.c')
-rw-r--r--src/u_parse.c58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/u_parse.c b/src/u_parse.c
new file mode 100644
index 0000000..b49e6ba
--- /dev/null
+++ b/src/u_parse.c
@@ -0,0 +1,58 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* u_parse.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* 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 */
+/* */
+/* ************************************************************************** */
+
+#include <libft.h>
+
+#include "u_utils.h"
+#include "d_define.h"
+
+t_quote_mode
+ u_meet_dquote(const char *head, char *ptr, t_quote_mode mode)
+{
+ if (mode == Q_NONE)
+ {
+ if (u_is_not_escaped(head, ptr) == TRUE)
+ {
+ return (Q_DOUBLE);
+ }
+ else
+ {
+ return (Q_NONE);
+ }
+ }
+ else if (mode == Q_DOUBLE && u_is_not_escaped(head, ptr) == TRUE)
+ {
+ return (Q_NONE);
+ }
+ return (mode);
+}
+
+t_quote_mode
+ u_meet_squote(const char *head, char *ptr, t_quote_mode mode)
+{
+ if (mode == Q_NONE)
+ {
+ if (u_is_not_escaped(head, ptr) == TRUE)
+ {
+ return (Q_SINGLE);
+ }
+ else
+ {
+ return (Q_NONE);
+ }
+ }
+ else if (mode == Q_SINGLE)
+ {
+ return (Q_NONE);
+ }
+ return (mode);
+}