uhub/src/tools
Jan Vidar Krey b81bb2cbd9 Cleaned up all list iterations, added macro named LIST_FOREACH.
Previously you would have to do something like this:

for (type foo = (type) list_get_first(list); foo; foo = (type) list_get_next(list)
{
    /* code */
}

Now, you can instead write this as:

LIST_FOREACH(type, foo, list,
{
    /* code */
})

Basically, boilerplate stuff including the casting is gone.
2013-03-22 00:58:14 +01:00
..
adcclient.c Re-factored the ADC client code to use the new connection establishment API. 2013-02-05 22:43:59 +01:00
adcclient.h Start using the async DNS API. 2012-10-24 23:22:10 +02:00
adcrush.c Use util's format_size. 2012-10-09 10:20:58 +02:00
admin.c Cleaned up all list iterations, added macro named LIST_FOREACH. 2013-03-22 00:58:14 +01:00
fuzzer.h Update copyright notices and added licenses to files that were missing it. 2011-12-19 10:54:47 +01:00
uhub-passwd.c Command arguments handling + cleanups 2012-04-18 23:03:05 +02:00