/usr/lib/x86_64-linux-gnu/perl5/5.34
NameSizeModeActions
Algorithm/-0755rm
Authen/-0755rm
auto/-0755rm
B/-0755rm
Bundle/-0755rm
Class/-0755rm
common/-0755rm
DateTime/-0755rm
DBD/-0755rm
DBI/-0755rm
Devel/-0755rm
Encode/-0755rm
File/-0755rm
HTML/-0755rm
IO/-0755rm
JSON/-0755rm
Locale/-0755rm
Net/-0755rm
Package/-0755rm
Params/-0755rm
Proc/-0755rm
Ref/-0755rm
Sub/-0755rm
Term/-0755rm
Text/-0755rm
Variable/-0755rm
Win32/-0755rm
Clone.pm23470644editdlrm
DateTime.pm1366990644editdlrm
DBI.pm3182000644editdlrm
dbixs_rev.pl15330644editdlrm
FCGI.pm58540644editdlrm
PadWalker.pm42000644editdlrm
Socket6.pm100930644editdlrm
XString.pm18010644editdlrm
Edit: /usr/lib/x86_64-linux-gnu/perl5/5.34/XString.pm (1801B)
package XString; use strict; use warnings; # ABSTRACT: Isolated String helpers from B BEGIN { our $VERSION = '0.005'; # VERSION: generated by DZP::OurPkgVersion require XSLoader; XSLoader::load(__PACKAGE__); } 1; __END__ =pod =encoding utf-8 =head1 NAME XString - Isolated String helpers from B =head1 VERSION version 0.005 =head1 SYNOPSIS #!perl use strict; use warnings; use Test::More; use XString; use B; is XString::cstring( q[a'string"with quotes] ), B::cstring( q[a'string"with quotes] ), q["a'string\"with quotes"]; is XString::perlstring( q[a'string"with quotes] ), B::perlstring( q[a'string"with quotes] ), q["a'string\"with quotes"]; done_testing; =head1 DESCRIPTION XString provides the L string helpers in one isolated package. Right now only L and L are available. =for markdown [![](https://github.com/atoomic/XString/workflows/linux/badge.svg)](https://github.com/atoomic/XString/actions) [![](https://github.com/atoomic/XString/workflows/macos/badge.svg)](https://github.com/atoomic/XString/actions) [![](https://github.com/atoomic/XString/workflows/windows/badge.svg)](https://github.com/atoomic/XString/actions) =head1 FUNCTIONS =head2 cstring(STR) Similar to B::cstring; Returns a double-quote-surrounded escaped version of STR which can be used as a string in C source code. =head2 perlstring(STR) Similar to B::perlstring; Returns a double-quote-surrounded escaped version of STR which can be used as a string in Perl source code. =head1 AUTHOR Nicolas R =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2018 by cPanel, Inc. 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