summaryrefslogtreecommitdiff
path: root/taint.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2022-05-06 16:45:41 -0600
committerKarl Williamson <khw@cpan.org>2022-05-13 09:26:14 -0600
commita5aac01fc121e3b14a69dd62d13e60ad49b54115 (patch)
tree666328205461ada646616aeaa5e9217030ac1932 /taint.c
parenta88465cfef7d2f3b0fde1d8793702a3011fd946d (diff)
downloadperl-a5aac01fc121e3b14a69dd62d13e60ad49b54115.tar.gz
perlintern: Document various taint operations
Diffstat (limited to 'taint.c')
-rw-r--r--taint.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/taint.c b/taint.c
index 9ff3c308e3..77a2351696 100644
--- a/taint.c
+++ b/taint.c
@@ -23,6 +23,14 @@
#define PERL_IN_TAINT_C
#include "perl.h"
+/*
+=for apidoc taint_proper
+
+Implements the L</TAINT_PROPER> macro, which you should generally use instead.
+
+=cut
+*/
+
void
Perl_taint_proper(pTHX_ const char *f, const char *const s)
{
@@ -77,6 +85,13 @@ Perl_taint_proper(pTHX_ const char *f, const char *const s)
}
}
+/*
+=for apidoc taint_env
+
+Implements the L</TAINT_ENV> macro, which you should generally use instead.
+
+=cut
+*/
void
Perl_taint_env(pTHX)
{