Sat, 29 Dec 2012 18:08:23 +0100
added ldap authentication
/* * File: ucx.h * Author: olaf * * Created on 31. Dezember 2011, 17:17 */ #ifndef UCX_H #define UCX_H #include <stdlib.h> #ifdef __cplusplus extern "C" { #endif #define UCX_FOREACH(type,list,elem) \ for (type elem = list ; elem != NULL ; elem = elem->next) /* element1,element2,custom data -> {-1,0,1} */ typedef int(*cmp_func)(void*,void*,void*); /* element,custom data -> copy of element */ typedef void*(*copy_func)(void*,void*); #ifdef __cplusplus } #endif #endif /* UCX_H */