Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/woip/c/lsearcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'woip/c/lsearcher.h')
-rw-r--r--woip/c/lsearcher.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/woip/c/lsearcher.h b/woip/c/lsearcher.h
new file mode 100644
index 0000000..0a065c0
--- /dev/null
+++ b/woip/c/lsearcher.h
@@ -0,0 +1,47 @@
+#ifndef __LSEARCHER_H__
+#define __LSEARCHER_H__
+
+#include <sys/param.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+
+#include "debug.h"
+#include "safe.h"
+
+#define NBG 128
+#define MAXSTR 1024
+
+#define OFFSET 14
+#define PARITY 128
+#define SWITCH 30
+#define UMLAUT 31
+
+#define LDC_MIN 0
+#define LDC_MAX 28
+
+#define BIGRAM_MIN (UCHAR_MAX - CHAR_MAX)
+#define BIGRAM_MAX UCHAR_MAX
+
+#define ASCII_MIN 32
+#define ASCII_MAX CHAR_MAX
+
+#define TO7BIT(x) ((x) = (x) & 127)
+
+#define TOLOWER(c) ('A' <= (c) && (c) <= 'Z' ? (c) | 0x20 : (c))
+
+typedef bool resultf(uchar_t *);
+typedef void donef();
+typedef unsigned char *ucaddr_t;
+
+typedef struct {
+ uchar_t bigram1[NBG], bigram2[NBG];
+ uchar_t *addr;
+ uint32_t *prefixdb;
+ size_t size;
+} lindex;
+
+void kill_search();
+int search(lindex *, uchar_t *, resultf, donef, bool, bool);
+
+#endif