fix missing typedef

Wed, 14 Feb 2024 22:12:35 +0100

author
Mike Becker <universe@uap-core.de>
date
Wed, 14 Feb 2024 22:12:35 +0100
changeset 824
a939872c284d
parent 823
f4faa7f73cb8
child 825
3f324ea53152

fix missing typedef

src/cx/tree.h file | annotate | diff | comparison | revisions
     1.1 --- a/src/cx/tree.h	Wed Feb 14 21:43:32 2024 +0100
     1.2 +++ b/src/cx/tree.h	Wed Feb 14 22:12:35 2024 +0100
     1.3 @@ -108,7 +108,7 @@
     1.4   * 1 if one of the children might contain the data,
     1.5   * -1 if neither the node, nor the children contains the data
     1.6   */
     1.7 -int (*cx_tree_search_func)(void const *node, void const* data);
     1.8 +typedef int (*cx_tree_search_func)(void const *node, void const* data);
     1.9  
    1.10  #ifdef __cplusplus
    1.11  } // extern "C"

mercurial