| Debug-Flags documentation | Contained in the Debug-Flags distribution. |
Debug::Flags - set PL_debug flags at runtime
use strict; use Debug::Flags; Debug::Flags::set_flags(0x2); .. do something
This module turns on the -D flags described in perlrun in runtime, if you have a debugging perl.
Chia-liang Kao <clkao@clkao.org>
Copyright 2006 by Chia-liang Kao and others.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Debug-Flags documentation | Contained in the Debug-Flags distribution. |
package Debug::Flags; use 5.008; use strict; use warnings; use Carp; use XSLoader; use Scalar::Util; use Scope::Guard; our $VERSION = '0.26'; XSLoader::load 'Debug::Flags', $VERSION; 1;