diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-05-20 19:47:18 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-05-20 19:47:18 +0200 |
commit | 5b79623823350d79e58b0375ccdef294e24d4848 (patch) | |
tree | 78b2dd30924ffa8063bda2b54ae2c922e33a98c7 /perl-install/c.pm | |
parent | 335e8be11b757c6146819271135668b7f58afb81 (diff) | |
download | drakx-5b79623823350d79e58b0375ccdef294e24d4848.tar drakx-5b79623823350d79e58b0375ccdef294e24d4848.tar.gz drakx-5b79623823350d79e58b0375ccdef294e24d4848.tar.bz2 drakx-5b79623823350d79e58b0375ccdef294e24d4848.tar.xz drakx-5b79623823350d79e58b0375ccdef294e24d4848.zip |
partially podify some modules
Diffstat (limited to 'perl-install/c.pm')
-rw-r--r-- | perl-install/c.pm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/perl-install/c.pm b/perl-install/c.pm index 9b7a2c046..8022d0095 100644 --- a/perl-install/c.pm +++ b/perl-install/c.pm @@ -18,3 +18,31 @@ sub AUTOLOAD() { } 1; + + +=head1 SYNOPSYS + +The C module is glue code between the Perl & the C worlds that enable drakx to: + +=over + +=item * + +access various C libraries, mainly libldetect + +=item * + +bind some C functions (eg: syslog(), ...) + +=item * + +implement in C some helper functions + +=back + +It is autogenerated from perl-install/c/stuff.xs.pl. +One needs to run "perl Makefile.PL" + +It's used quite a lot by L<detect_devices>. + +=cut |