aboutsummaryrefslogtreecommitdiffstats
path: root/libnormalform_get_relationship__.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2026-06-01 19:07:14 +0200
committerMattias Andrée <m@maandree.se>2026-06-01 19:07:14 +0200
commit77ade8d20906fe9ca2cf6788ff1e1437e0912868 (patch)
tree61495e90e057bf792bb1d8ce157cef0ecc2ab696 /libnormalform_get_relationship__.c
parentFirst commit (diff)
downloadlibnormalform-77ade8d20906fe9ca2cf6788ff1e1437e0912868.tar.gz
libnormalform-77ade8d20906fe9ca2cf6788ff1e1437e0912868.tar.bz2
libnormalform-77ade8d20906fe9ca2cf6788ff1e1437e0912868.tar.xz
Second commitHEADmaster
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'libnormalform_get_relationship__.c')
-rw-r--r--libnormalform_get_relationship__.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/libnormalform_get_relationship__.c b/libnormalform_get_relationship__.c
new file mode 100644
index 0000000..baad786
--- /dev/null
+++ b/libnormalform_get_relationship__.c
@@ -0,0 +1,23 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+#ifndef TEST
+
+
+int
+(libnormalform_get_relationship__)(struct expression *left, struct expression *right, /* TODO */
+ const struct libnormalform_analysers *analysers,
+ enum libnormalform_sentence_relationship *relationship_out)
+{
+ (void) left;
+ (void) right;
+ (void) analysers;
+ *relationship_out = LIBNORMALFORM_MUTUALLY_INDEPENDENT;
+ return 0;
+}
+
+
+#else
+
+TODO_TEST
+
+#endif