mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Better document DEBUGP.
This commit is contained in:
parent
c757ced83f
commit
9d1c80944d
@ -107,7 +107,12 @@ so, delete this exception statement from your version. */
|
||||
# define IF_DEBUG if (0)
|
||||
#endif
|
||||
|
||||
#define DEBUGP(x) do { IF_DEBUG { debug_logprintf x; } } while (0)
|
||||
/* Print ARGS if debugging is enabled and requested, otherwise do
|
||||
nothing. This must be called with an extra level of parentheses
|
||||
because it's not possible to pass a variable number of arguments to
|
||||
a macro (in portable C89). ARGS are like arguments to printf. */
|
||||
|
||||
#define DEBUGP(args) do { IF_DEBUG { debug_logprintf args; } } while (0)
|
||||
|
||||
/* Define an integer type that works for file sizes, content lengths,
|
||||
and such. Normally we could just use off_t, but off_t is always
|
||||
|
Loading…
Reference in New Issue
Block a user