summaryrefslogtreecommitdiff
path: root/thrdvar.h
diff options
context:
space:
mode:
authorSimon Cozens <simon@netthink.co.uk>2001-01-15 19:35:54 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-01-15 21:05:35 +0000
commitc155e47c72dddfc9198933377d5aa8edb497853c (patch)
tree8a5b8be622f8589c00ef687b0de41d7fe891ccb0 /thrdvar.h
parentf86aaa290fd366a2f22c4dad17ad31e9ef3c6111 (diff)
downloadperl-c155e47c72dddfc9198933377d5aa8edb497853c.tar.gz
API Variable documentation
Message-ID: <20010115193554.A9919@pembro26.pmb.ox.ac.uk> p4raw-id: //depot/perl@8447
Diffstat (limited to 'thrdvar.h')
-rw-r--r--thrdvar.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/thrdvar.h b/thrdvar.h
index 7f591d9c1a..e0fe1052f1 100644
--- a/thrdvar.h
+++ b/thrdvar.h
@@ -82,6 +82,23 @@ PERLVAR(Ttimesbuf, struct tms)
PERLVAR(Ttainted, bool) /* using variables controlled by $< */
PERLVAR(Tcurpm, PMOP *) /* what to do \ interps in REs from */
PERLVAR(Tnrs, SV *)
+
+/*
+=for apidoc Amn|SV*|PL_rs
+
+The input record separator - C<$/> in Perl space.
+
+=for apidoc Amn|GV*|PL_last_in_gv
+
+The GV which was last used for a filehandle input operation. (C<< <FH> >>)
+
+=for apidoc Amn|SV*|PL_ofs_sv
+
+The output field separator - C<$,> in Perl space.
+
+=cut
+*/
+
PERLVAR(Trs, SV *) /* input record separator $/ */
PERLVAR(Tlast_in_gv, GV *) /* GV used in last <FH> */
PERLVAR(Tofs_sv, SV *) /* output field separator $, */