summaryrefslogtreecommitdiffstats
path: root/helper.h
diff options
context:
space:
mode:
authorSimon Rettberg2014-03-15 01:49:50 +0100
committerSimon Rettberg2014-03-15 01:49:50 +0100
commitbedd2e7ccb1595c23e159eaa952ae1b0b5a3d2ad (patch)
treec7d1995a09f6ed0c4e6873252e957d72f5d07d07 /helper.h
downloadldadp-bedd2e7ccb1595c23e159eaa952ae1b0b5a3d2ad.tar.gz
ldadp-bedd2e7ccb1595c23e159eaa952ae1b0b5a3d2ad.tar.xz
ldadp-bedd2e7ccb1595c23e159eaa952ae1b0b5a3d2ad.zip
Lean and mean initial commit
Not much functionality yet
Diffstat (limited to 'helper.h')
-rw-r--r--helper.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/helper.h b/helper.h
new file mode 100644
index 0000000..840813d
--- /dev/null
+++ b/helper.h
@@ -0,0 +1,27 @@
+#ifndef _HELPER_H_
+#define _HELPER_H_
+
+#include "types.h"
+#include "ldap.h"
+
+void bail(char *args, ...);
+int helper_realloc(char **memory, size_t *curSize, const size_t newSize, const char *location);
+int helper_connect4(char *address, int port, char *ip);
+void helper_nonblock(const int fd);
+
+void helper_printava(struct AttributeValueAssertion* a,const char* rel);
+void helper_printal(struct AttributeDescriptionList* a);
+void helper_printfilter(struct Filter* f);
+
+static inline int min(const int a, const int b)
+{
+ return a < b ? a : b;
+}
+
+static inline int max(const int a, const int b)
+{
+ return a > b ? a : b;
+}
+
+#endif
+