ucx/ucx.h

Sat, 18 Feb 2012 15:50:43 +0100

author
Mike Becker <universe@uap-core.de>
date
Sat, 18 Feb 2012 15:50:43 +0100
changeset 26
59f147baea31
parent 18
69636f81db31
child 42
ff3dd1ee7dee
permissions
-rw-r--r--

added test framework and foreach macro

     1 /* 
     2  * File:   ucx.h
     3  * Author: olaf
     4  *
     5  * Created on 31. Dezember 2011, 17:17
     6  */
     8 #ifndef UCX_H
     9 #define	UCX_H
    11 #include <stdlib.h>
    13 #ifdef	__cplusplus
    14 extern "C" {
    15 #endif
    17 #define UCX_FOREACH(type,list,elem) \
    18         for (type elem = list ; elem != NULL ; elem = elem->next)
    20 /* source,data -> errno */
    21 typedef int(*ucx_callback)(void*,void*);
    23 /* element1,element2,custom data -> {-1,0,1} */
    24 typedef int(*cmp_func)(void*,void*,void*);
    26 /* element,custom data -> copy of element */
    27 typedef void*(*copy_func)(void*,void*);
    29 #ifdef	__cplusplus
    30 }
    31 #endif
    33 #endif	/* UCX_H */

mercurial