943e2035fa
We have a stack, don't be ashamed to use it. Instead of: foo_t *foo; foo = foo_new(); /* work with foo */ foo_delete(&foo); It's way better to: foo_t foo; foo_init(&foo); /* work with &foo */ foo_wipe(&foo); Remember: more mallocs == more fragmentation. Signed-off-by: Pierre Habouzit <madcoder@debian.org> |
||
---|---|---|
.. | ||
graph.c | ||
iconbox.c | ||
progressbar.c | ||
systray.c | ||
taglist.c | ||
tasklist.c | ||
textbox.c |