File: XS.pm

package info (click to toggle)
libpdf-api2-xs-perl 1.002-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 160 kB
  • sloc: perl: 35; makefile: 3
file content (33 lines) | stat: -rw-r--r-- 709 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package PDF::API2::XS;

use strict;
use warnings;

our $VERSION = '1.002'; # VERSION

=head1 NAME

PDF::API2::XS - Optional PDF::API2 add-on using XS to speed up expensive operations

=head1 DESCRIPTION

L<PDF::API2> will make use of this distribution, if it's installed, to speed up
some operations that are significantly faster in C than in Perl.

There's no need to interact with this distribution directly.  PDF::API2 will use
it automatically if it detects it.

=head1 AUTHOR

Rob Scovell

=head1 LICENSE

This software is copyright (c) 2020 by Steve Simms.

This is free software; you can redistribute it and/or modify it under the same
terms as the Perl 5 programming language system itself.

=cut

1;