blib/lib/Text/CharWidth.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 9 | 9 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 3 | 3 | 100.0 |
pod | n/a | ||
total | 12 | 12 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Text::CharWidth; | ||||||
2 | |||||||
3 | 1 | 1 | 17841 | use 5.008; | |||
1 | 4 | ||||||
1 | 31 | ||||||
4 | 1 | 1 | 5 | use strict; | |||
1 | 2 | ||||||
1 | 29 | ||||||
5 | 1 | 1 | 5 | use warnings; | |||
1 | 6 | ||||||
1 | 135 | ||||||
6 | |||||||
7 | require Exporter; | ||||||
8 | |||||||
9 | our @ISA = qw(Exporter); | ||||||
10 | our @EXPORT_OK = qw(mbwidth mbswidth mblen); | ||||||
11 | our @EXPORT = qw(); | ||||||
12 | our %EXPORT_TAGS = ('all' => [ @EXPORT_OK ]); | ||||||
13 | |||||||
14 | our $VERSION = '0.04'; | ||||||
15 | |||||||
16 | require XSLoader; | ||||||
17 | XSLoader::load('Text::CharWidth', $VERSION); | ||||||
18 | |||||||
19 | # Preloaded methods go here. | ||||||
20 | |||||||
21 | 1; | ||||||
22 | __END__ |