line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Alien::libjansson; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
125167
|
use 5.006; |
|
1
|
|
|
|
|
3
|
|
4
|
1
|
|
|
1
|
|
5
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
20
|
|
5
|
1
|
|
|
1
|
|
5
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
28
|
|
6
|
|
|
|
|
|
|
|
7
|
1
|
|
|
1
|
|
493
|
use parent 'Alien::Base'; |
|
1
|
|
|
|
|
291
|
|
|
1
|
|
|
|
|
5
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 NAME |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
Alien::libjansson - libjansson, with alien |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 VERSION |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Version 0.01 |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=cut |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
our $VERSION = '0.01'; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 SYNOPSIS |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
use Alien::libjansson; |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Alien::libjansson->libs; |
27
|
|
|
|
|
|
|
Alien::libjansson->libs_static; |
28
|
|
|
|
|
|
|
Alien::libjansson->cflags; |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 DESCRIPTION |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
C is an C interface to L, |
33
|
|
|
|
|
|
|
a JSON encoder/decoder in C. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 AUTHOR |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
B Fraser, C<< >> |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 BUGS |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
Please report any bugs or feature requests to C, or through |
42
|
|
|
|
|
|
|
the web interface at L. I will be notified, and then you'll |
43
|
|
|
|
|
|
|
automatically be notified of progress on your bug as I make changes. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
This software is Copyright (c) 2020 by B Fraser. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
This is free software, licensed under: |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
The Artistic License 2.0 (GPL Compatible) |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=cut |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
1; # End of Alien::libjansson |