Codebase list yodl / 719d131f-2a02-4ac0-b537-fcb3d166c8e9/main README.funnames
719d131f-2a02-4ac0-b537-fcb3d166c8e9/main

Tree @719d131f-2a02-4ac0-b537-fcb3d166c8e9/main (Download .tar.gz)

README.funnames @719d131f-2a02-4ac0-b537-fcb3d166c8e9/mainraw · history · blame

Classes defining XXX_construct also define 

    XXX_destruct: these functions expect an XXX *ptr and free all memory
                    allocated by XXX_construct, accessed via ptr

    XXX_delete:   these functions expect an XXX **ptr: they call
                    XXX_destruct(*ptr), then free(*ptr) and do *ptr = 0,
                    and should be used for dynamically allocated objects

    XXX_new:      these functions return an XXX *, allocated as XXX object,
                  expecting all but XXX_construct's 1st arguments.