/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

  • Committer: Gustav Hartvigsson
  • Date: 2016-01-25 21:52:28 UTC
  • mto: This revision was merged to the branch mainline in revision 111.
  • Revision ID: gustav.hartvigsson@gmail.com-20160125215228-m9k1we2mplfla6y4
* Getting closer to fixing the callbacks...

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.