Commit fdd23d01 authored by Robert Izzard's avatar Robert Izzard
Browse files

make functions visible that are required for API but were missing

parent 54881c7a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -82,6 +82,7 @@ void * cdict_calloc_function(struct cdict_t * const cdict,
    return p;
}

CDict_API_function
void cdict_free_alloc_function(struct cdict_t * const cdict,
                               void * const ptr)
{
+2 −0
Original line number Diff line number Diff line
@@ -494,6 +494,8 @@ void *cdict_realloc_function(struct cdict_t * const cdict,
void * cdict_calloc_function(struct cdict_t * const cdict,
                             size_t nmemb,
                             size_t size);

CDict_API_function
void cdict_free_alloc_function(struct cdict_t * const cdict,
                               void * const ptr);
int cdict_asprintf(struct cdict_t * const cdict,
+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
 */
__CDict_Pure_function
__CDict_Nonnull_all_arguments
CDict_API_function
int cdict_sort_auto_reverse(struct cdict_t * const cdict,
                            struct cdict_key_t * const a,
                            struct cdict_key_t * const b)
+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
 */
__CDict_Pure_function
__CDict_Nonnull_all_arguments
CDict_API_function
int cdict_sort_by_entry_auto(struct cdict_t * const cdict,
                             struct cdict_entry_t * const a,
                             struct cdict_entry_t * const b)