ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/pbcdedit/pbcdedit
(Generate patch)

Comparing pbcdedit/pbcdedit (file contents):
Revision 1.33 by root, Thu Aug 15 08:39:11 2019 UTC vs.
Revision 1.34 by root, Thu Aug 15 08:42:02 2019 UTC

17# 17#
18# You should have received a copy of the GNU General Public License 18# You should have received a copy of the GNU General Public License
19# along with this program. If not, see <https://www.gnu.org/licenses/>. 19# along with this program. If not, see <https://www.gnu.org/licenses/>.
20# 20#
21 21
22use 5.014; # numerous features needed 22use 5.016; # numerous features need 5.14, __SUB__ needs 5.16
23 23
24our $VERSION = '1.0'; 24our $VERSION = '1.0';
25our $JSON_VERSION = 1; # the versiobn of the json objects generated by this program 25our $JSON_VERSION = 1; # the versiobn of the json objects generated by this program
26 26
27=head1 NAME 27=head1 NAME
59 59
60=item Does not rely on Windows 60=item Does not rely on Windows
61 61
62As the "portable" in the name implies, this program does not rely on 62As the "portable" in the name implies, this program does not rely on
63C<bcdedit> or other windows programs or libraries, it works on any system 63C<bcdedit> or other windows programs or libraries, it works on any system
64that supports at least perl version 5.14. 64that supports at least perl version 5.16.
65 65
66=item Decodes and encodes BCD device elements 66=item Decodes and encodes BCD device elements
67 67
68PBCDEDIT can concisely decode and encode BCD device element contents. This 68PBCDEDIT can concisely decode and encode BCD device element contents. This
69is pretty unique, and offers a lot of potential that can't be realised 69is pretty unique, and offers a lot of potential that can't be realised
825permitted by law. 825permitted by law.
826 826
827=cut 827=cut
828 828
829# common sense is optional, but recommended 829# common sense is optional, but recommended
830#BEGIN { eval { require "common/sensex.pm"; } && common::sensex->import } 830BEGIN { eval { require "common/sense.pm"; } && common::sense->import }
831no warnings;
832no strict;
833 831
834use Encode (); 832use Encode ();
835use List::Util (); 833use List::Util ();
836use IO::Handle (); 834use IO::Handle ();
837use Time::HiRes (); 835use Time::HiRes ();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines