/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to libssts/DynamicArray.h

* Merge callback system fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
s_dynamic_array_new (size_t len,
75
75
                     FreeFunc free_func);
76
76
 
 
77
SDynamicArray *
 
78
s_dynamic_array_new_full (size_t len,
 
79
                          FreeFunc free_func,
 
80
                          FuncPointer to_json,
 
81
                          FuncPointer from_json);
 
82
 
77
83
/**
78
84
 * Same as s_dynamic_array_new() but with support for to_json and from_json
79
85
 * methods.