Codebase list yodl / b88f3c06-3b81-42aa-b41a-ae8a0bd8e20e/main README.funnames
b88f3c06-3b81-42aa-b41a-ae8a0bd8e20e/main

Tree @b88f3c06-3b81-42aa-b41a-ae8a0bd8e20e/main (Download .tar.gz)

README.funnames @b88f3c06-3b81-42aa-b41a-ae8a0bd8e20e/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.