Skip to content

Commit

Permalink
committed a missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
wchristian committed Jan 24, 2019
1 parent 569136d commit 01d7291
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions label.pm
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package label;
use strictures 2;
use parent 'Parse::Binary';
use constant FORMAT => (
magic => 'a136',
width => 'L',
height => 'L',
eh => 'a48',
length => 'L',
text => 'a{$length}',
pad => 'a{($length % 4) ? 4 - ($length % 4) : 0}',
tail => 'a*',
);
1;

0 comments on commit 01d7291

Please sign in to comment.