MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / ll_append

Function ll_append

emmy_hook/src/libpe/llist.cpp:38–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36}
37
38void ll_append( ll_t *ll, void *data )
39{
40 LL_ITEM_CREATE( data );
41
42 if( ll->head == NULL )
43 {
44 ll->head = item;
45 }
46 else
47 {
48 ll->tail->next = item;
49 }
50
51 ll->tail = item;
52 ++ll->elements;
53}
54
55void ll_destroy( ll_t *ll, ll_data_free_t data_free )
56{

Callers 2

peExtractStringsFunction · 0.85
peParseImportTableFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected