perl 5.0 alpha 6
[p5sagit/p5-mst-13.2.git] / perl.h
1 /* $RCSfile: perl.h,v $$Revision: 4.1 $$Date: 92/08/07 18:25:56 $
2  *
3  *    Copyright (c) 1991, Larry Wall
4  *
5  *    You may distribute under the terms of either the GNU General Public
6  *    License or the Artistic License, as specified in the README file.
7  *
8  * $Log:        perl.h,v $
9  * Revision 4.1  92/08/07  18:25:56  lwall
10  * 
11  * Revision 4.0.1.6  92/06/08  14:55:10  lwall
12  * patch20: added Atari ST portability
13  * patch20: bcopy() and memcpy() now tested for overlap safety
14  * patch20: Perl now distinguishes overlapped copies from non-overlapped
15  * patch20: removed implicit int declarations on functions
16  * 
17  * Revision 4.0.1.5  91/11/11  16:41:07  lwall
18  * patch19: uts wrongly defines S_ISDIR() et al
19  * patch19: too many preprocessors can't expand a macro right in #if
20  * patch19: added little-endian pack/unpack options
21  * 
22  * Revision 4.0.1.4  91/11/05  18:06:10  lwall
23  * patch11: various portability fixes
24  * patch11: added support for dbz
25  * patch11: added some support for 64-bit integers
26  * patch11: hex() didn't understand leading 0x
27  * 
28  * Revision 4.0.1.3  91/06/10  01:25:10  lwall
29  * patch10: certain pattern optimizations were botched
30  * 
31  * Revision 4.0.1.2  91/06/07  11:28:33  lwall
32  * patch4: new copyright notice
33  * patch4: made some allowances for "semi-standard" C
34  * patch4: many, many itty-bitty portability fixes
35  * 
36  * Revision 4.0.1.1  91/04/11  17:49:51  lwall
37  * patch1: hopefully straightened out some of the Xenix mess
38  * 
39  * Revision 4.0  91/03/20  01:37:56  lwall
40  * 4.0 baseline.
41  * 
42  */
43
44 #include "embed.h"
45
46 #define VOIDWANT 1
47 #ifdef __cplusplus
48 #include "config_c++.h"
49 #else
50 #include "config.h"
51 #endif
52
53 #ifndef BYTEORDER
54 #   define BYTEORDER 0x1234
55 #endif
56
57 /* Overall memory policy? */
58 #ifndef CONSERVATIVE
59 #   define LIBERAL 1
60 #endif
61
62 /*
63  * The following contortions are brought to you on behalf of all the
64  * standards, semi-standards, de facto standards, not-so-de-facto standards
65  * of the world, as well as all the other botches anyone ever thought of.
66  * The basic theory is that if we work hard enough here, the rest of the
67  * code can be a lot prettier.  Well, so much for theory.  Sorry, Henry...
68  */
69
70 #ifdef MYMALLOC
71 #   ifdef HIDEMYMALLOC
72 #       define malloc Mymalloc
73 #       define realloc Myremalloc
74 #       define free Myfree
75 #   endif
76 #   define safemalloc malloc
77 #   define saferealloc realloc
78 #   define safefree free
79 #endif
80
81 /* work around some libPW problems */
82 #ifdef DOINIT
83 char Error[1];
84 #endif
85
86 /* define this once if either system, instead of cluttering up the src */
87 #if defined(MSDOS) || defined(atarist)
88 #define DOSISH 1
89 #endif
90
91 #if defined(__STDC__) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus)
92 # define STANDARD_C 1
93 #endif
94
95 #if defined(STANDARD_C)
96 #   define P(args) args
97 #else
98 #   define P(args) ()
99 #endif
100
101 #if defined(HASVOLATILE) || defined(STANDARD_C)
102 #   ifdef __cplusplus
103 #       define VOL              // to temporarily suppress warnings
104 #   else
105 #       define VOL volatile
106 #   endif
107 #else
108 #   define VOL
109 #endif
110
111 #define TAINT_IF(c)     (tainted |= (c))
112 #define TAINT_NOT       (tainted = 0)
113 #define TAINT_PROPER(s) if (tainting) taint_proper(no_security, s)
114 #define TAINT_ENV()     if (tainting) taint_env()
115
116 #ifndef HAS_VFORK
117 #   define vfork fork
118 #endif
119
120 #ifdef HAS_GETPGRP2
121 #   ifndef HAS_GETPGRP
122 #       define HAS_GETPGRP
123 #   endif
124 #   define getpgrp getpgrp2
125 #endif
126
127 #ifdef HAS_SETPGRP2
128 #   ifndef HAS_SETPGRP
129 #       define HAS_SETPGRP
130 #   endif
131 #   define setpgrp setpgrp2
132 #endif
133
134 #include <stdio.h>
135 #include <ctype.h>
136 #include <setjmp.h>
137
138 #ifndef MSDOS
139 #   ifdef PARAM_NEEDS_TYPES
140 #       include <sys/types.h>
141 #   endif
142 #   include <sys/param.h>
143 #endif
144
145
146 /* Use all the "standard" definitions? */
147 #ifdef STANDARD_C
148 #   include <stdlib.h>
149 #   include <string.h>
150 #   define MEM_SIZE size_t
151 #else
152     typedef unsigned int MEM_SIZE;
153 #endif /* STANDARD_C */
154
155 #if defined(HAS_MEMCMP) && defined(mips) && defined(ultrix)
156 #   undef HAS_MEMCMP
157 #endif
158
159 #ifdef HAS_MEMCPY
160 #  ifndef STANDARD_C
161 #    ifndef memcpy
162         extern char * memcpy P((char*, char*, int));
163 #    endif
164 #  endif
165 #else
166 #   ifndef memcpy
167 #       ifdef HAS_BCOPY
168 #           define memcpy(d,s,l) bcopy(s,d,l)
169 #       else
170 #           define memcpy(d,s,l) my_bcopy(s,d,l)
171 #       endif
172 #   endif
173 #endif /* HAS_MEMCPY */
174
175 #ifdef HAS_MEMSET
176 #  ifndef STANDARD_C
177 #    ifndef memset
178         extern char *memset P((char*, int, int));
179 #    endif
180 #  endif
181 #  define memzero(d,l) memset(d,0,l)
182 #else
183 #   ifndef memzero
184 #       ifdef HAS_BZERO
185 #           define memzero(d,l) bzero(d,l)
186 #       else
187 #           define memzero(d,l) my_bzero(d,l)
188 #       endif
189 #   endif
190 #endif /* HAS_MEMSET */
191
192 #ifdef HAS_MEMCMP
193 #  ifndef STANDARD_C
194 #    ifndef memcmp
195         extern int memcmp P((char*, char*, int));
196 #    endif
197 #  endif
198 #else
199 #   ifndef memcmp
200 #       define memcmp(s1,s2,l) my_memcmp(s1,s2,l)
201 #   endif
202 #endif /* HAS_MEMCMP */
203
204 /* we prefer bcmp slightly for comparisons that don't care about ordering */
205 #ifndef HAS_BCMP
206 #   ifndef bcmp
207 #       define bcmp(s1,s2,l) memcmp(s1,s2,l)
208 #   endif
209 #endif /* HAS_BCMP */
210
211 #ifndef HAS_MEMMOVE
212 #   if defined(HAS_BCOPY) && defined(SAFE_BCOPY)
213 #       define memmove(d,s,l) bcopy(s,d,l)
214 #   else
215 #       if defined(HAS_MEMCPY) && defined(SAFE_MEMCPY)
216 #           define memmove(d,s,l) memcpy(d,s,l)
217 #       else
218 #           define memmove(d,s,l) my_bcopy(s,d,l)
219 #       endif
220 #   endif
221 #endif
222
223 #ifndef _TYPES_         /* If types.h defines this it's easy. */
224 #   ifndef major                /* Does everyone's types.h define this? */
225 #       include <sys/types.h>
226 #   endif
227 #endif
228
229 #ifdef I_NETINET_IN
230 #   include <netinet/in.h>
231 #endif
232
233 #include <sys/stat.h>
234
235 #if defined(uts) || defined(UTekV)
236 #   undef S_ISDIR
237 #   undef S_ISCHR
238 #   undef S_ISBLK
239 #   undef S_ISREG
240 #   undef S_ISFIFO
241 #   undef S_ISLNK
242 #   define S_ISDIR(P) (((P)&S_IFMT)==S_IFDIR)
243 #   define S_ISCHR(P) (((P)&S_IFMT)==S_IFCHR)
244 #   define S_ISBLK(P) (((P)&S_IFMT)==S_IFBLK)
245 #   define S_ISREG(P) (((P)&S_IFMT)==S_IFREG)
246 #   define S_ISFIFO(P) (((P)&S_IFMT)==S_IFIFO)
247 #   ifdef S_IFLNK
248 #       define S_ISLNK(P) (((P)&S_IFMT)==S_IFLNK)
249 #   endif
250 #endif
251
252 #ifdef I_TIME
253 #   include <time.h>
254 #endif
255
256 #ifdef I_SYS_TIME
257 #   ifdef SYSTIMEKERNEL
258 #       define KERNEL
259 #   endif
260 #   include <sys/time.h>
261 #   ifdef SYSTIMEKERNEL
262 #       undef KERNEL
263 #   endif
264 #endif
265
266 #ifndef MSDOS
267 #include <sys/times.h>
268 #endif
269
270 #if defined(HAS_STRERROR) && (!defined(HAS_MKDIR) || !defined(HAS_RMDIR))
271 #   undef HAS_STRERROR
272 #endif
273
274 #include <errno.h>
275 #ifdef HAS_SOCKET
276 #   ifndef ENOTSOCK
277 #     include <net/errno.h>
278 #   endif
279 #endif
280
281 #ifndef MSDOS
282 #   ifndef errno
283         extern int errno;     /* ANSI allows errno to be an lvalue expr */
284 #   endif
285 #endif
286
287 #ifndef strerror
288 #   ifdef HAS_STRERROR
289         char *strerror P((int));
290 #   else
291         extern int sys_nerr;
292         extern char *sys_errlist[];
293 #       define strerror(e) \
294                 ((e) < 0 || (e) >= sys_nerr ? "(unknown)" : sys_errlist[e])
295 #   endif
296 #endif
297
298 #ifdef I_SYSIOCTL
299 #   ifndef _IOCTL_
300 #       include <sys/ioctl.h>
301 #   endif
302 #endif
303
304 #if defined(mc300) || defined(mc500) || defined(mc700) || defined(mc6000)
305 #   ifdef HAS_SOCKETPAIR
306 #       undef HAS_SOCKETPAIR
307 #   endif
308 #   ifdef HAS_NDBM
309 #       undef HAS_NDBM
310 #   endif
311 #endif
312
313 #if INTSIZE == 2
314 #   define htoni htons
315 #   define ntohi ntohs
316 #else
317 #   define htoni htonl
318 #   define ntohi ntohl
319 #endif
320
321 #if defined(I_DIRENT)
322 #   include <dirent.h>
323 #   define DIRENT dirent
324 #else
325 #   ifdef I_SYS_NDIR
326 #       include <sys/ndir.h>
327 #       define DIRENT direct
328 #   else
329 #       ifdef I_SYS_DIR
330 #           ifdef hp9000s500
331 #               include <ndir.h>        /* may be wrong in the future */
332 #           else
333 #               include <sys/dir.h>
334 #           endif
335 #           define DIRENT direct
336 #       endif
337 #   endif
338 #endif
339
340 #ifdef FPUTS_BOTCH
341 /* work around botch in SunOS 4.0.1 and 4.0.2 */
342 #   ifndef fputs
343 #       define fputs(sv,fp) fprintf(fp,"%s",sv)
344 #   endif
345 #endif
346
347 /*
348  * The following gobbledygook brought to you on behalf of __STDC__.
349  * (I could just use #ifndef __STDC__, but this is more bulletproof
350  * in the face of half-implementations.)
351  */
352
353 #ifndef S_IFMT
354 #   ifdef _S_IFMT
355 #       define S_IFMT _S_IFMT
356 #   else
357 #       define S_IFMT 0170000
358 #   endif
359 #endif
360
361 #ifndef S_ISDIR
362 #   define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
363 #endif
364
365 #ifndef S_ISCHR
366 #   define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR)
367 #endif
368
369 #ifndef S_ISBLK
370 #   ifdef S_IFBLK
371 #       define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK)
372 #   else
373 #       define S_ISBLK(m) (0)
374 #   endif
375 #endif
376
377 #ifndef S_ISREG
378 #   define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
379 #endif
380
381 #ifndef S_ISFIFO
382 #   ifdef S_IFIFO
383 #       define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO)
384 #   else
385 #       define S_ISFIFO(m) (0)
386 #   endif
387 #endif
388
389 #ifndef S_ISLNK
390 #   ifdef _S_ISLNK
391 #       define S_ISLNK(m) _S_ISLNK(m)
392 #   else
393 #       ifdef _S_IFLNK
394 #           define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK)
395 #       else
396 #           ifdef S_IFLNK
397 #               define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK)
398 #           else
399 #               define S_ISLNK(m) (0)
400 #           endif
401 #       endif
402 #   endif
403 #endif
404
405 #ifndef S_ISSOCK
406 #   ifdef _S_ISSOCK
407 #       define S_ISSOCK(m) _S_ISSOCK(m)
408 #   else
409 #       ifdef _S_IFSOCK
410 #           define S_ISSOCK(m) ((m & S_IFMT) == _S_IFSOCK)
411 #       else
412 #           ifdef S_IFSOCK
413 #               define S_ISSOCK(m) ((m & S_IFMT) == S_IFSOCK)
414 #           else
415 #               define S_ISSOCK(m) (0)
416 #           endif
417 #       endif
418 #   endif
419 #endif
420
421 #ifndef S_IRUSR
422 #   ifdef S_IREAD
423 #       define S_IRUSR S_IREAD
424 #       define S_IWUSR S_IWRITE
425 #       define S_IXUSR S_IEXEC
426 #   else
427 #       define S_IRUSR 0400
428 #       define S_IWUSR 0200
429 #       define S_IXUSR 0100
430 #   endif
431 #   define S_IRGRP (S_IRUSR>>3)
432 #   define S_IWGRP (S_IWUSR>>3)
433 #   define S_IXGRP (S_IXUSR>>3)
434 #   define S_IROTH (S_IRUSR>>6)
435 #   define S_IWOTH (S_IWUSR>>6)
436 #   define S_IXOTH (S_IXUSR>>6)
437 #endif
438
439 #ifndef S_ISUID
440 #   define S_ISUID 04000
441 #endif
442
443 #ifndef S_ISGID
444 #   define S_ISGID 02000
445 #endif
446
447 #ifdef ff_next
448 #   undef ff_next
449 #endif
450
451 #if defined(cray) || defined(gould) || defined(i860)
452 #   define SLOPPYDIVIDE
453 #endif
454
455 #if defined(cray) || defined(convex) || defined (uts) || BYTEORDER > 0xffff
456 #   define QUAD
457 #endif
458
459 #ifdef QUAD
460 #   ifdef cray
461 #       define quad int
462 #   else
463 #       if defined(convex) || defined (uts)
464 #           define quad long long
465 #       else
466 #           define quad long
467 #       endif
468 #   endif
469 #endif
470
471 #ifdef VOIDSIG
472 #   define VOIDRET void
473 #else
474 #   define VOIDRET int
475 #endif
476
477 #ifdef DOSISH
478 #   include "dosish.h"
479 #else
480 #   include "unixish.h"
481 #endif
482
483 #ifndef HAS_PAUSE
484 #define pause() sleep((32767<<16)+32767)
485 #endif
486
487 #ifndef IOCPARM_LEN
488 #   ifdef IOCPARM_MASK
489         /* on BSDish systes we're safe */
490 #       define IOCPARM_LEN(x)  (((x) >> 16) & IOCPARM_MASK)
491 #   else
492         /* otherwise guess at what's safe */
493 #       define IOCPARM_LEN(x)   256
494 #   endif
495 #endif
496
497 typedef MEM_SIZE STRLEN;
498
499 typedef struct op OP;
500 typedef struct cop COP;
501 typedef struct unop UNOP;
502 typedef struct binop BINOP;
503 typedef struct listop LISTOP;
504 typedef struct logop LOGOP;
505 typedef struct condop CONDOP;
506 typedef struct pmop PMOP;
507 typedef struct svop SVOP;
508 typedef struct gvop GVOP;
509 typedef struct pvop PVOP;
510 typedef struct cvop CVOP;
511 typedef struct loop LOOP;
512
513 typedef struct Outrec Outrec;
514 typedef struct lstring Lstring;
515 typedef struct interpreter PerlInterpreter;
516 typedef struct ff FF;
517 typedef struct sv SV;
518 typedef struct av AV;
519 typedef struct hv HV;
520 typedef struct cv CV;
521 typedef struct regexp REGEXP;
522 typedef struct gp GP;
523 typedef struct sv GV;
524 typedef struct io IO;
525 typedef struct context CONTEXT;
526 typedef struct block BLOCK;
527
528 typedef struct magic MAGIC;
529 typedef struct xrv XRV;
530 typedef struct xpv XPV;
531 typedef struct xpviv XPVIV;
532 typedef struct xpvnv XPVNV;
533 typedef struct xpvmg XPVMG;
534 typedef struct xpvlv XPVLV;
535 typedef struct xpvav XPVAV;
536 typedef struct xpvhv XPVHV;
537 typedef struct xpvgv XPVGV;
538 typedef struct xpvcv XPVCV;
539 typedef struct xpvbm XPVBM;
540 typedef struct xpvfm XPVFM;
541 typedef struct xpvio XPVIO;
542 typedef struct mgvtbl MGVTBL;
543 typedef union any ANY;
544
545 #include "handy.h"
546 union any {
547     void*       any_ptr;
548     I32         any_i32;
549 };
550
551 #include "regexp.h"
552 #include "sv.h"
553 #include "util.h"
554 #include "form.h"
555 #include "gv.h"
556 #include "cv.h"
557 #include "opcode.h"
558 #include "op.h"
559 #include "cop.h"
560 #include "av.h"
561 #include "hv.h"
562 #include "mg.h"
563 #include "scope.h"
564
565 #if defined(iAPX286) || defined(M_I286) || defined(I80286)
566 #   define I286
567 #endif
568
569 #ifndef STANDARD_C
570 #   ifdef CHARSPRINTF
571         char *sprintf P((char *, ...));
572 #   else
573         int sprintf P((char *, ...));
574 #   endif
575 #endif
576
577 #if defined(htonl) && !defined(HAS_HTONL)
578 #define HAS_HTONL
579 #endif
580 #if defined(htons) && !defined(HAS_HTONS)
581 #define HAS_HTONS
582 #endif
583 #if defined(ntohl) && !defined(HAS_NTOHL)
584 #define HAS_NTOHL
585 #endif
586 #if defined(ntohs) && !defined(HAS_NTOHS)
587 #define HAS_NTOHS
588 #endif
589 #ifndef HAS_HTONL
590 #if (BYTEORDER & 0xffff) != 0x4321
591 #define HAS_HTONS
592 #define HAS_HTONL
593 #define HAS_NTOHS
594 #define HAS_NTOHL
595 #define MYSWAP
596 #define htons my_swap
597 #define htonl my_htonl
598 #define ntohs my_swap
599 #define ntohl my_ntohl
600 #endif
601 #else
602 #if (BYTEORDER & 0xffff) == 0x4321
603 #undef HAS_HTONS
604 #undef HAS_HTONL
605 #undef HAS_NTOHS
606 #undef HAS_NTOHL
607 #endif
608 #endif
609
610 /*
611  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
612  * -DWS
613  */
614 #if BYTEORDER != 0x1234
615 # define HAS_VTOHL
616 # define HAS_VTOHS
617 # define HAS_HTOVL
618 # define HAS_HTOVS
619 # if BYTEORDER == 0x4321
620 #  define vtohl(x)      ((((x)&0xFF)<<24)       \
621                         +(((x)>>24)&0xFF)       \
622                         +(((x)&0x0000FF00)<<8)  \
623                         +(((x)&0x00FF0000)>>8)  )
624 #  define vtohs(x)      ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
625 #  define htovl(x)      vtohl(x)
626 #  define htovs(x)      vtohs(x)
627 # endif
628         /* otherwise default to functions in util.c */
629 #endif
630
631 #ifdef CASTNEGFLOAT
632 #define U_S(what) ((U16)(what))
633 #define U_I(what) ((unsigned int)(what))
634 #define U_L(what) ((U32)(what))
635 #else
636 U32 cast_ulong P((double));
637 #define U_S(what) ((U16)cast_ulong(what))
638 #define U_I(what) ((unsigned int)cast_ulong(what))
639 #define U_L(what) (cast_ulong(what))
640 #endif
641
642 #ifdef CASTI32
643 #define I_32(what) ((I32)(what))
644 #else
645 I32 cast_i32 P((double));
646 #define I_32(what) (cast_i32(what))
647 #endif
648
649 struct Outrec {
650     I32         o_lines;
651     char        *o_str;
652     U32         o_len;
653 };
654
655 #ifndef MAXSYSFD
656 #   define MAXSYSFD 2
657 #endif
658
659 #ifndef DOSISH
660 #define TMPPATH "/tmp/perl-eXXXXXX"
661 #else
662 #define TMPPATH "plXXXXXX"
663 #endif /* MSDOS */
664
665 #ifndef __cplusplus
666 UIDTYPE getuid P(());
667 UIDTYPE geteuid P(());
668 GIDTYPE getgid P(());
669 GIDTYPE getegid P(());
670 #endif
671
672 #ifdef DEBUGGING
673 #define YYDEBUG 1
674 #define DEB(a)                          a
675 #define DEBUG(a)   if (debug)           a
676 #define DEBUG_p(a) if (debug & 1)       a
677 #define DEBUG_s(a) if (debug & 2)       a
678 #define DEBUG_l(a) if (debug & 4)       a
679 #define DEBUG_t(a) if (debug & 8)       a
680 #define DEBUG_o(a) if (debug & 16)      a
681 #define DEBUG_c(a) if (debug & 32)      a
682 #define DEBUG_P(a) if (debug & 64)      a
683 #define DEBUG_m(a) if (debug & 128)     a
684 #define DEBUG_f(a) if (debug & 256)     a
685 #define DEBUG_r(a) if (debug & 512)     a
686 #define DEBUG_x(a) if (debug & 1024)    a
687 #define DEBUG_u(a) if (debug & 2048)    a
688 #define DEBUG_L(a) if (debug & 4096)    a
689 #define DEBUG_H(a) if (debug & 8192)    a
690 #define DEBUG_X(a) if (debug & 16384)   a
691 #define DEBUG_D(a) if (debug & 32768)   a
692 #else
693 #define DEB(a)
694 #define DEBUG(a)
695 #define DEBUG_p(a)
696 #define DEBUG_s(a)
697 #define DEBUG_l(a)
698 #define DEBUG_t(a)
699 #define DEBUG_o(a)
700 #define DEBUG_c(a)
701 #define DEBUG_P(a)
702 #define DEBUG_m(a)
703 #define DEBUG_f(a)
704 #define DEBUG_r(a)
705 #define DEBUG_x(a)
706 #define DEBUG_u(a)
707 #define DEBUG_L(a)
708 #define DEBUG_H(a)
709 #define DEBUG_X(a)
710 #define DEBUG_D(a)
711 #endif
712 #define YYMAXDEPTH 300
713
714 #define assert(what)    DEB( {                                          \
715         if (!(what)) {                                                  \
716             croak("Assertion failed: file \"%s\", line %d",             \
717                 __FILE__, __LINE__);                                    \
718             exit(1);                                                    \
719         }})
720
721 struct ufuncs {
722     I32 (*uf_val)P((I32, SV*));
723     I32 (*uf_set)P((I32, SV*));
724     I32 uf_index;
725 };
726
727 /* Fix these up for __STDC__ */
728 char *mktemp P((char*));
729 double atof P((const char*));
730
731 #ifndef STANDARD_C
732 /* All of these are in stdlib.h or time.h for ANSI C */
733 long time();
734 struct tm *gmtime(), *localtime();
735 char *strchr(), *strrchr();
736 char *strcpy(), *strcat();
737 #endif /* ! STANDARD_C */
738
739
740 #ifdef I_MATH
741 #    include <math.h>
742 #else
743 #   ifdef __cplusplus
744         extern "C" {
745 #   endif
746             double exp P((double));
747             double log P((double));
748             double sqrt P((double));
749             double modf P((double,int*));
750             double sin P((double));
751             double cos P((double));
752             double atan2 P((double,double));
753             double pow P((double,double));
754 #   ifdef __cplusplus
755         };
756 #   endif
757 #endif
758
759
760 char *crypt P((const char*, const char*));
761 char *getenv P((const char*));
762 long lseek P((int,int,int));
763 char *getlogin P((void));
764
765 #ifdef EUNICE
766 #define UNLINK unlnk
767 int unlnk P((char*));
768 #else
769 #define UNLINK unlink
770 #endif
771
772 #ifndef HAS_SETREUID
773 #ifdef HAS_SETRESUID
774 #define setreuid(r,e) setresuid(r,e,-1)
775 #define HAS_SETREUID
776 #endif
777 #endif
778 #ifndef HAS_SETREGID
779 #ifdef HAS_SETRESGID
780 #define setregid(r,e) setresgid(r,e,-1)
781 #define HAS_SETREGID
782 #endif
783 #endif
784
785 #define SCAN_DEF 0
786 #define SCAN_TR 1
787 #define SCAN_REPL 2
788
789 #ifdef DEBUGGING
790 #define PAD_SV(po) pad_sv(po)
791 #else
792 #define PAD_SV(po) curpad[po]
793 #endif
794
795 /****************/
796 /* Truly global */
797 /****************/
798
799 /* global state */
800 EXT PerlInterpreter *curinterp; /* currently running interpreter */
801 extern char **  environ;        /* environment variables supplied via exec */
802 EXT int         uid;            /* current real user id */
803 EXT int         euid;           /* current effective user id */
804 EXT int         gid;            /* current real group id */
805 EXT int         egid;           /* current effective group id */
806 EXT bool        nomemok;        /* let malloc context handle nomem */
807 EXT U32         an;             /* malloc sequence number */
808 EXT U32         cop_seqmax;     /* statement sequence number */
809 EXT U32         op_seqmax;      /* op sequence number */
810 EXT U32         evalseq;        /* eval sequence number */
811 EXT U32         sub_generation; /* inc to force methods to be looked up again */
812 EXT char **     origenviron;
813 EXT U32         origalen;
814
815 EXT I32 *       xiv_root;       /* free xiv list--shared by interpreters */
816 EXT double *    xnv_root;       /* free xnv list--shared by interpreters */
817 EXT XRV *       xrv_root;       /* free xrv list--shared by interpreters */
818 EXT XPV *       xpv_root;       /* free xpv list--shared by interpreters */
819
820 /* Stack for currently executing thread--context switch must handle this.     */
821 EXT SV **       stack_base;     /* stack->array_ary */
822 EXT SV **       stack_sp;       /* stack pointer now */
823 EXT SV **       stack_max;      /* stack->array_ary + stack->array_max */
824
825 /* likewise for these */
826
827 EXT OP *        op;             /* current op--oughta be in a global register */
828
829 EXT I32 *       scopestack;     /* blocks we've entered */
830 EXT I32         scopestack_ix;
831 EXT I32         scopestack_max;
832
833 EXT ANY*        savestack;      /* to save non-local values on */
834 EXT I32         savestack_ix;
835 EXT I32         savestack_max;
836
837 EXT OP **       retstack;       /* returns we've pushed */
838 EXT I32         retstack_ix;
839 EXT I32         retstack_max;
840
841 EXT I32 *       markstack;      /* stackmarks we're remembering */
842 EXT I32 *       markstack_ptr;  /* stackmarks we're remembering */
843 EXT I32 *       markstack_max;  /* stackmarks we're remembering */
844
845 EXT SV **       curpad;
846
847 /* temp space */
848 EXT SV *        Sv;
849 EXT XPV *       Xpv;
850 EXT char        buf[1024];
851 EXT char        tokenbuf[256];
852 EXT struct stat statbuf;
853 #ifndef MSDOS
854 EXT struct tms  timesbuf;
855 #endif
856 EXT STRLEN na;          /* for use in SvPV when length is Not Applicable */
857
858 /* for tmp use in stupid debuggers */
859 EXT int *       di;
860 EXT short *     ds;
861 EXT char *      dc;
862
863 /* handy constants */
864 EXT char *      Yes INIT("1");
865 EXT char *      No INIT("");
866 EXT char *      hexdigit INIT("0123456789abcdef0123456789ABCDEFx");
867 EXT char *      patleave INIT("\\.^$@dDwWsSbB+*?|()-nrtfeaxc0123456789[{]}");
868 EXT char *      vert INIT("|");
869
870 EXT char        warn_uninit[]
871   INIT("Use of uninitialized variable");
872 EXT char        warn_nosemi[]
873   INIT("Semicolon seems to be missing");
874 EXT char        warn_reserved[]
875   INIT("Unquoted string \"%s\" may clash with future reserved word");
876 EXT char        warn_nl[]
877   INIT("Unsuccessful %s on filename containing newline");
878 EXT char        no_usym[]
879   INIT("Can't use an undefined value as %s reference");
880 EXT char        no_aelem[]
881   INIT("Modification of non-creatable array value attempted, subscript %d");
882 EXT char        no_helem[]
883   INIT("Modification of non-creatable hash value attempted, subscript \"%s\"");
884 EXT char        no_modify[]
885   INIT("Modification of a read-only value attempted");
886 EXT char        no_mem[]
887   INIT("Out of memory!\n");
888 EXT char        no_security[]
889   INIT("Insecure dependency in %s%s");
890 EXT char        no_sock_func[]
891   INIT("Unsupported socket function \"%s\" called");
892 EXT char        no_dir_func[]
893   INIT("Unsupported directory function \"%s\" called");
894 EXT char        no_func[]
895   INIT("The %s function is unimplemented");
896
897 EXT SV          sv_undef;
898 EXT SV          sv_no;
899 EXT SV          sv_yes;
900 #ifdef CSH
901     EXT char *  cshname INIT(CSH);
902     EXT I32     cshlen;
903 #endif
904
905 #ifdef DOINIT
906 EXT char *sig_name[] = {
907     SIG_NAME,0
908 };
909 #else
910 EXT char *sig_name[];
911 #endif
912
913 #ifdef DOINIT
914 EXT unsigned char fold[] = {    /* fast case folding table */
915         0,      1,      2,      3,      4,      5,      6,      7,
916         8,      9,      10,     11,     12,     13,     14,     15,
917         16,     17,     18,     19,     20,     21,     22,     23,
918         24,     25,     26,     27,     28,     29,     30,     31,
919         32,     33,     34,     35,     36,     37,     38,     39,
920         40,     41,     42,     43,     44,     45,     46,     47,
921         48,     49,     50,     51,     52,     53,     54,     55,
922         56,     57,     58,     59,     60,     61,     62,     63,
923         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
924         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
925         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
926         'x',    'y',    'z',    91,     92,     93,     94,     95,
927         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
928         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
929         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
930         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
931         128,    129,    130,    131,    132,    133,    134,    135,
932         136,    137,    138,    139,    140,    141,    142,    143,
933         144,    145,    146,    147,    148,    149,    150,    151,
934         152,    153,    154,    155,    156,    157,    158,    159,
935         160,    161,    162,    163,    164,    165,    166,    167,
936         168,    169,    170,    171,    172,    173,    174,    175,
937         176,    177,    178,    179,    180,    181,    182,    183,
938         184,    185,    186,    187,    188,    189,    190,    191,
939         192,    193,    194,    195,    196,    197,    198,    199,
940         200,    201,    202,    203,    204,    205,    206,    207,
941         208,    209,    210,    211,    212,    213,    214,    215,
942         216,    217,    218,    219,    220,    221,    222,    223,    
943         224,    225,    226,    227,    228,    229,    230,    231,
944         232,    233,    234,    235,    236,    237,    238,    239,
945         240,    241,    242,    243,    244,    245,    246,    247,
946         248,    249,    250,    251,    252,    253,    254,    255
947 };
948 #else
949 EXT unsigned char fold[];
950 #endif
951
952 #ifdef DOINIT
953 EXT unsigned char freq[] = {    /* letter frequencies for mixed English/C */
954         1,      2,      84,     151,    154,    155,    156,    157,
955         165,    246,    250,    3,      158,    7,      18,     29,
956         40,     51,     62,     73,     85,     96,     107,    118,
957         129,    140,    147,    148,    149,    150,    152,    153,
958         255,    182,    224,    205,    174,    176,    180,    217,
959         233,    232,    236,    187,    235,    228,    234,    226,
960         222,    219,    211,    195,    188,    193,    185,    184,
961         191,    183,    201,    229,    181,    220,    194,    162,
962         163,    208,    186,    202,    200,    218,    198,    179,
963         178,    214,    166,    170,    207,    199,    209,    206,
964         204,    160,    212,    216,    215,    192,    175,    173,
965         243,    172,    161,    190,    203,    189,    164,    230,
966         167,    248,    227,    244,    242,    255,    241,    231,
967         240,    253,    169,    210,    245,    237,    249,    247,
968         239,    168,    252,    251,    254,    238,    223,    221,
969         213,    225,    177,    197,    171,    196,    159,    4,
970         5,      6,      8,      9,      10,     11,     12,     13,
971         14,     15,     16,     17,     19,     20,     21,     22,
972         23,     24,     25,     26,     27,     28,     30,     31,
973         32,     33,     34,     35,     36,     37,     38,     39,
974         41,     42,     43,     44,     45,     46,     47,     48,
975         49,     50,     52,     53,     54,     55,     56,     57,
976         58,     59,     60,     61,     63,     64,     65,     66,
977         67,     68,     69,     70,     71,     72,     74,     75,
978         76,     77,     78,     79,     80,     81,     82,     83,
979         86,     87,     88,     89,     90,     91,     92,     93,
980         94,     95,     97,     98,     99,     100,    101,    102,
981         103,    104,    105,    106,    108,    109,    110,    111,
982         112,    113,    114,    115,    116,    117,    119,    120,
983         121,    122,    123,    124,    125,    126,    127,    128,
984         130,    131,    132,    133,    134,    135,    136,    137,
985         138,    139,    141,    142,    143,    144,    145,    146
986 };
987 #else
988 EXT unsigned char freq[];
989 #endif
990
991 #ifdef DEBUGGING
992 #ifdef DOINIT
993 EXT char* block_type[] = {
994         "NULL",
995         "SUB",
996         "EVAL",
997         "LOOP",
998         "SUBST",
999         "BLOCK",
1000 };
1001 #else
1002 EXT char* block_type[];
1003 #endif
1004 #endif
1005
1006 /*****************************************************************************/
1007 /* This lexer/parser stuff is currently global since yacc is hard to reenter */
1008 /*****************************************************************************/
1009 /* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
1010
1011 typedef enum {
1012     XOPERATOR,
1013     XTERM,
1014     XREF,
1015     XSTATE,
1016     XBLOCK,
1017 } expectation;
1018
1019 EXT FILE * VOL  rsfp INIT(Nullfp);
1020 EXT SV *        linestr;
1021 EXT char *      bufptr;
1022 EXT char *      oldbufptr;
1023 EXT char *      oldoldbufptr;
1024 EXT char *      bufend;
1025 EXT expectation expect INIT(XSTATE);    /* how to interpret ambiguous tokens */
1026
1027 EXT I32         multi_start;    /* 1st line of multi-line string */
1028 EXT I32         multi_end;      /* last line of multi-line string */
1029 EXT I32         multi_open;     /* delimiter of said string */
1030 EXT I32         multi_close;    /* delimiter of said string */
1031
1032 EXT GV *        scrgv;
1033 EXT I32         error_count;    /* how many errors so far, max 10 */
1034 EXT I32         subline;        /* line this subroutine began on */
1035 EXT SV *        subname;        /* name of current subroutine */
1036
1037 EXT AV *        comppad;        /* storage for lexically scoped temporaries */
1038 EXT AV *        comppad_name;   /* variable names for "my" variables */
1039 EXT I32         comppad_name_fill;/* last "introduced" variable offset */
1040 EXT I32         min_intro_pending;/* start of vars to introduce */
1041 EXT I32         max_intro_pending;/* end of vars to introduce */
1042 EXT I32         padix;          /* max used index in current "register" pad */
1043 EXT COP         compiling;
1044
1045 EXT SV *        evstr;          /* op_fold_const() temp string cache */
1046 EXT I32         thisexpr;       /* name id for nothing_in_common() */
1047 EXT char *      last_uni;       /* position of last named-unary operator */
1048 EXT char *      last_lop;       /* position of last list operator */
1049 EXT OPCODE      last_lop_op;    /* last list operator */
1050 EXT bool        in_format;      /* we're compiling a run_format */
1051 EXT bool        in_my;          /* we're compiling a "my" declaration */
1052 EXT I32         needblockscope INIT(TRUE);      /* block overhead needed? */
1053 #ifdef FCRYPT
1054 EXT I32         cryptseen;      /* has fast crypt() been initialized? */
1055 #endif
1056
1057 /**************************************************************************/
1058 /* This regexp stuff is global since it always happens within 1 expr eval */
1059 /**************************************************************************/
1060
1061 EXT char *      regprecomp;     /* uncompiled string. */
1062 EXT char *      regparse;       /* Input-scan pointer. */
1063 EXT char *      regxend;        /* End of input for compile */
1064 EXT I32         regnpar;        /* () count. */
1065 EXT char *      regcode;        /* Code-emit pointer; &regdummy = don't. */
1066 EXT I32         regsize;        /* Code size. */
1067 EXT I32         regfold;        /* are we folding? */
1068 EXT I32         regsawbracket;  /* Did we do {d,d} trick? */
1069 EXT I32         regsawback;     /* Did we see \1, ...? */
1070
1071 EXT char *      reginput;       /* String-input pointer. */
1072 EXT char        regprev;        /* char before regbol, \n if none */
1073 EXT char *      regbol;         /* Beginning of input, for ^ check. */
1074 EXT char *      regeol;         /* End of input, for $ check. */
1075 EXT char **     regstartp;      /* Pointer to startp array. */
1076 EXT char **     regendp;        /* Ditto for endp. */
1077 EXT char *      reglastparen;   /* Similarly for lastparen. */
1078 EXT char *      regtill;        /* How far we are required to go. */
1079 EXT I32         regmyp_size;
1080 EXT char **     regmystartp;
1081 EXT char **     regmyendp;
1082
1083 /***********************************************/
1084 /* Global only to current interpreter instance */
1085 /***********************************************/
1086
1087 #ifdef MULTIPLICITY
1088 #define IEXT
1089 #define IINIT(x)
1090 struct interpreter {
1091 #else
1092 #define IEXT EXT
1093 #define IINIT(x) INIT(x)
1094 #endif
1095
1096 /* pseudo environmental stuff */
1097 IEXT int        Iorigargc;
1098 IEXT char **    Iorigargv;
1099 IEXT GV *       Ienvgv;
1100 IEXT GV *       Isiggv;
1101 IEXT GV *       Iincgv;
1102 IEXT char *     Iorigfilename;
1103
1104 /* switches */
1105 IEXT char *     Icddir;
1106 IEXT bool       Iminus_c;
1107 IEXT char       Ipatchlevel[6];
1108 IEXT char *     Inrs IINIT("\n");
1109 IEXT U32        Inrschar IINIT('\n');   /* final char of rs, or 0777 if none */
1110 IEXT I32        Inrslen IINIT(1);
1111 IEXT bool       Ipreprocess;
1112 IEXT bool       Iminus_n;
1113 IEXT bool       Iminus_p;
1114 IEXT bool       Iminus_l;
1115 IEXT bool       Iminus_a;
1116 IEXT bool       Idoswitches;
1117 IEXT bool       Idowarn;
1118 IEXT bool       Idoextract;
1119 IEXT bool       Isawampersand;  /* must save all match strings */
1120 IEXT bool       Isawstudy;      /* do fbm_instr on all strings */
1121 IEXT bool       Isawi;          /* study must assume case insensitive */
1122 IEXT bool       Isawvec;
1123 IEXT bool       Iunsafe;
1124 IEXT bool       Ido_undump;             /* -u or dump seen? */
1125 IEXT char *     Iinplace;
1126 IEXT char *     Ie_tmpname;
1127 IEXT FILE *     Ie_fp;
1128 IEXT VOL U32    Idebug;
1129 IEXT U32        Iperldb;
1130
1131 /* magical thingies */
1132 IEXT time_t     Ibasetime;              /* $^T */
1133 IEXT I32        Iarybase;               /* $[ */
1134 IEXT SV *       Iformfeed;              /* $^L */
1135 IEXT char *     Ichopset IINIT(" \n-"); /* $: */
1136 IEXT char *     Irs IINIT("\n");        /* $/ */
1137 IEXT U32        Irschar IINIT('\n');    /* final char of rs, or 0777 if none */
1138 IEXT STRLEN     Irslen IINIT(1);
1139 IEXT bool       Irspara;
1140 IEXT char *     Iofs;                   /* $, */
1141 IEXT STRLEN     Iofslen;
1142 IEXT char *     Iors;                   /* $\ */
1143 IEXT STRLEN     Iorslen;
1144 IEXT char *     Iofmt;                  /* $# */
1145 IEXT I32        Imaxsysfd IINIT(MAXSYSFD); /* top fd to pass to subprocesses */
1146 IEXT int        Imultiline;       /* $*--do strings hold >1 line? */
1147 IEXT U16        Istatusvalue;   /* $? */
1148
1149 IEXT struct stat Istatcache;            /* _ */
1150 IEXT GV *       Istatgv;
1151 IEXT SV *       Istatname IINIT(Nullsv);
1152
1153 /* shortcuts to various I/O objects */
1154 IEXT GV *       Istdingv;
1155 IEXT GV *       Ilast_in_gv;
1156 IEXT GV *       Idefgv;
1157 IEXT GV *       Iargvgv;
1158 IEXT GV *       Idefoutgv;
1159 IEXT GV *       Icuroutgv;
1160 IEXT GV *       Iargvoutgv;
1161
1162 /* shortcuts to regexp stuff */
1163 IEXT GV *       Ileftgv;
1164 IEXT GV *       Iampergv;
1165 IEXT GV *       Irightgv;
1166 IEXT PMOP *     Icurpm;         /* what to do \ interps from */
1167 IEXT I32 *      Iscreamfirst;
1168 IEXT I32 *      Iscreamnext;
1169 IEXT I32        Imaxscream IINIT(-1);
1170 IEXT SV *       Ilastscream;
1171
1172 /* shortcuts to debugging objects */
1173 IEXT GV *       IDBgv;
1174 IEXT GV *       IDBline;
1175 IEXT GV *       IDBsub;
1176 IEXT SV *       IDBsingle;
1177 IEXT SV *       IDBtrace;
1178 IEXT SV *       IDBsignal;
1179 IEXT AV *       Ilineary;       /* lines of script for debugger */
1180 IEXT AV *       Idbargs;        /* args to call listed by caller function */
1181
1182 /* symbol tables */
1183 IEXT HV *       Idefstash;      /* main symbol table */
1184 IEXT HV *       Icurstash;      /* symbol table for current package */
1185 IEXT HV *       Idebstash;      /* symbol table for perldb package */
1186 IEXT SV *       Icurstname;     /* name of current package */
1187 IEXT AV *       Ibeginav;       /* names of BEGIN subroutines */
1188 IEXT AV *       Iendav;         /* names of END subroutines */
1189 IEXT AV *       Ipad;           /* storage for lexically scoped temporaries */
1190 IEXT AV *       Ipadname;       /* variable names for "my" variables */
1191
1192 /* memory management */
1193 IEXT SV **      Itmps_stack;
1194 IEXT I32        Itmps_ix IINIT(-1);
1195 IEXT I32        Itmps_floor IINIT(-1);
1196 IEXT I32        Itmps_max;
1197 IEXT I32        Isv_count;      /* how many SV* are currently allocated */
1198 IEXT I32        Isv_rvcount;    /* how many RV* are currently allocated */
1199 IEXT SV*        Isv_root;       /* storage for SVs belonging to interp */
1200 IEXT SV*        Isv_arenaroot;  /* list of areas for garbage collection */
1201
1202 /* funky return mechanisms */
1203 IEXT I32        Ilastspbase;
1204 IEXT I32        Ilastsize;
1205 IEXT int        Iforkprocess;   /* so do_open |- can return proc# */
1206
1207 /* subprocess state */
1208 IEXT AV *       Ifdpid;         /* keep fd-to-pid mappings for my_popen */
1209 IEXT HV *       Ipidstatus;     /* keep pid-to-status mappings for waitpid */
1210
1211 /* internal state */
1212 IEXT VOL int    Iin_eval;       /* trap "fatal" errors? */
1213 IEXT OP *       Irestartop;     /* Are we propagating an error from croak? */
1214 IEXT int        Idelaymagic;    /* ($<,$>) = ... */
1215 IEXT bool       Idirty;         /* clean before rerunning */
1216 IEXT bool       Ilocalizing;    /* are we processing a local() list? */
1217 IEXT bool       Itainted;       /* using variables controlled by $< */
1218 IEXT bool       Itainting;      /* doing taint checks */
1219
1220 /* trace state */
1221 IEXT I32        Idlevel;
1222 IEXT I32        Idlmax IINIT(128);
1223 IEXT char *     Idebname;
1224 IEXT char *     Idebdelim;
1225
1226 /* current interpreter roots */
1227 IEXT OP *       Imain_root;
1228 IEXT OP *       Imain_start;
1229 IEXT OP *       Ieval_root;
1230 IEXT OP *       Ieval_start;
1231
1232 /* runtime control stuff */
1233 IEXT COP * VOL  Icurcop IINIT(&compiling);
1234 IEXT line_t     Icopline IINIT(NOLINE);
1235 IEXT CONTEXT *  Icxstack;
1236 IEXT I32        Icxstack_ix IINIT(-1);
1237 IEXT I32        Icxstack_max IINIT(128);
1238 IEXT jmp_buf    Itop_env;
1239
1240 /* stack stuff */
1241 IEXT AV *       Istack;         /* THE STACK */
1242 IEXT AV *       Imainstack;     /* the stack when nothing funny is happening */
1243 IEXT SV **      Imystack_base;  /* stack->array_ary */
1244 IEXT SV **      Imystack_sp;    /* stack pointer now */
1245 IEXT SV **      Imystack_max;   /* stack->array_ary + stack->array_max */
1246
1247 /* format accumulators */
1248 IEXT SV *       Iformtarget;
1249 IEXT SV *       Ibodytarget;
1250 IEXT SV *       Itoptarget;
1251
1252 /* statics moved here for shared library purposes */
1253 IEXT SV         Istrchop;       /* return value from chop */
1254 IEXT int        Ifilemode;      /* so nextargv() can preserve mode */
1255 IEXT int        Ilastfd;        /* what to preserve mode on */
1256 IEXT char *     Ioldname;       /* what to preserve mode on */
1257 IEXT char **    IArgv;          /* stuff to free from do_aexec, vfork safe */
1258 IEXT char *     ICmd;           /* stuff to free from do_aexec, vfork safe */
1259 IEXT OP *       Isortcop;       /* user defined sort routine */
1260 IEXT HV *       Isortstash;     /* which is in some package or other */
1261 IEXT GV *       Ifirstgv;       /* $a */
1262 IEXT GV *       Isecondgv;      /* $b */
1263 IEXT AV *       Isortstack;     /* temp stack during pp_sort() */
1264 IEXT AV *       Isignalstack;   /* temp stack during sighandler() */
1265 IEXT SV *       Imystrk;        /* temp key string for do_each() */
1266 IEXT I32        Idumplvl;       /* indentation level on syntax tree dump */
1267 IEXT PMOP *     Ioldlastpm;     /* for saving regexp context during debugger */
1268 IEXT I32        Igensym;        /* next symbol for getsym() to define */
1269 IEXT bool       Ipreambled;
1270 IEXT int        Ilaststatval IINIT(-1);
1271 IEXT I32        Ilaststype IINIT(OP_STAT);
1272
1273 #undef IEXT
1274 #undef IINIT
1275
1276 #ifdef MULTIPLICITY
1277 };
1278 #else
1279 struct interpreter {
1280     char broiled;
1281 };
1282 #endif
1283
1284 #include "pp.h"
1285
1286 #ifdef __cplusplus
1287 extern "C" {
1288 #endif
1289
1290 #include "proto.h"
1291
1292 #ifdef __cplusplus
1293 };
1294 #endif
1295
1296 /* The following must follow proto.h */
1297
1298 #ifdef DOINIT
1299 MGVTBL vtbl_sv =        {magic_get,
1300                                 magic_set,
1301                                         magic_len,
1302                                                 0,      0};
1303 MGVTBL vtbl_env =       {0,     0,      0,      0,      0};
1304 MGVTBL vtbl_envelem =   {0,     magic_setenv,
1305                                         0,      0,      0};
1306 MGVTBL vtbl_sig =       {0,     0,               0, 0, 0};
1307 MGVTBL vtbl_sigelem =   {0,     magic_setsig,
1308                                         0,      0,      0};
1309 MGVTBL vtbl_pack =      {0,     0,
1310                                         0,      0,      0};
1311 MGVTBL vtbl_packelem =  {magic_getpack,
1312                                 magic_setpack,
1313                                         0,      magic_clearpack,
1314                                                         0};
1315 MGVTBL vtbl_dbline =    {0,     magic_setdbline,
1316                                         0,      0,      0};
1317 MGVTBL vtbl_isa =       {0,     magic_setisa,
1318                                         0,      0,      0};
1319 MGVTBL vtbl_isaelem =   {0,     magic_setisa,
1320                                         0,      0,      0};
1321 MGVTBL vtbl_arylen =    {magic_getarylen,
1322                                 magic_setarylen,
1323                                         0,      0,      0};
1324 MGVTBL vtbl_glob =      {magic_getglob,
1325                                 magic_setglob,
1326                                         0,      0,      0};
1327 MGVTBL vtbl_mglob =     {0,     magic_setmglob,
1328                                         0,      0,      0};
1329 MGVTBL vtbl_taint =     {magic_gettaint,magic_settaint,
1330                                         0,      0,      0};
1331 MGVTBL vtbl_substr =    {0,     magic_setsubstr,
1332                                         0,      0,      0};
1333 MGVTBL vtbl_vec =       {0,     magic_setvec,
1334                                         0,      0,      0};
1335 MGVTBL vtbl_bm =        {0,     magic_setbm,
1336                                         0,      0,      0};
1337 MGVTBL vtbl_uvar =      {magic_getuvar,
1338                                 magic_setuvar,
1339                                         0,      0,      0};
1340 #else
1341 EXT MGVTBL vtbl_sv;
1342 EXT MGVTBL vtbl_env;
1343 EXT MGVTBL vtbl_envelem;
1344 EXT MGVTBL vtbl_sig;
1345 EXT MGVTBL vtbl_sigelem;
1346 EXT MGVTBL vtbl_pack;
1347 EXT MGVTBL vtbl_packelem;
1348 EXT MGVTBL vtbl_dbline;
1349 EXT MGVTBL vtbl_isa;
1350 EXT MGVTBL vtbl_isaelem;
1351 EXT MGVTBL vtbl_arylen;
1352 EXT MGVTBL vtbl_glob;
1353 EXT MGVTBL vtbl_mglob;
1354 EXT MGVTBL vtbl_taint;
1355 EXT MGVTBL vtbl_substr;
1356 EXT MGVTBL vtbl_vec;
1357 EXT MGVTBL vtbl_bm;
1358 EXT MGVTBL vtbl_uvar;
1359 #endif