!C99Shell v. 1.0 pre-release build #16!

Software: Apache/2.0.54 (Fedora). PHP/5.0.4 

uname -a: Linux mina-info.me 2.6.17-1.2142_FC4smp #1 SMP Tue Jul 11 22:57:02 EDT 2006 i686 

uid=48(apache) gid=48(apache) groups=48(apache)
context=system_u:system_r:httpd_sys_script_t
 

Safe-mode: OFF (not secure)

/usr/lib/perl5/5.8.6/i386-linux-thread-multi/CORE/   drwxr-xr-x
Free 3.45 GB of 27.03 GB (12.78%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     warnings.h (5.58 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
   This file is built by warnings.pl
   Any changes made here will be lost!
*/


#define Off(x)            ((x) / 8)
#define Bit(x)            (1 << ((x) % 8))
#define IsSet(a, x)        ((a)[Off(x)] & Bit(x))


#define G_WARN_OFF        0     /* $^W == 0 */
#define G_WARN_ON        1    /* -w flag and $^W != 0 */
#define G_WARN_ALL_ON        2    /* -W flag */
#define G_WARN_ALL_OFF        4    /* -X flag */
#define G_WARN_ONCE        8    /* set if 'once' ever enabled */
#define G_WARN_ALL_MASK        (G_WARN_ALL_ON|G_WARN_ALL_OFF)

#define pWARN_STD        Nullsv
#define pWARN_ALL        (Nullsv+1)    /* use warnings 'all' */
#define pWARN_NONE        (Nullsv+2)    /* no  warnings 'all' */

#define specialWARN(x)        ((x) == pWARN_STD || (x) == pWARN_ALL ||    \
                 (x) == pWARN_NONE)

/* Warnings Categories added in Perl 5.008 */

#define WARN_ALL        0
#define WARN_CLOSURE        1
#define WARN_DEPRECATED        2
#define WARN_EXITING        3
#define WARN_GLOB        4
#define WARN_IO            5
#define WARN_CLOSED        6
#define WARN_EXEC        7
#define WARN_LAYER        8
#define WARN_NEWLINE        9
#define WARN_PIPE        10
#define WARN_UNOPENED        11
#define WARN_MISC        12
#define WARN_NUMERIC        13
#define WARN_ONCE        14
#define WARN_OVERFLOW        15
#define WARN_PACK        16
#define WARN_PORTABLE        17
#define WARN_RECURSION        18
#define WARN_REDEFINE        19
#define WARN_REGEXP        20
#define WARN_SEVERE        21
#define WARN_DEBUGGING        22
#define WARN_INPLACE        23
#define WARN_INTERNAL        24
#define WARN_MALLOC        25
#define WARN_SIGNAL        26
#define WARN_SUBSTR        27
#define WARN_SYNTAX        28
#define WARN_AMBIGUOUS        29
#define WARN_BAREWORD        30
#define WARN_DIGIT        31
#define WARN_PARENTHESIS    32
#define WARN_PRECEDENCE        33
#define WARN_PRINTF        34
#define WARN_PROTOTYPE        35
#define WARN_QW            36
#define WARN_RESERVED        37
#define WARN_SEMICOLON        38
#define WARN_TAINT        39
#define WARN_THREADS        40
#define WARN_UNINITIALIZED    41
#define WARN_UNPACK        42
#define WARN_UNTIE        43
#define WARN_UTF8        44
#define WARN_VOID        45
#define WARN_Y2K        46

#define WARNsize        12
#define WARN_ALLstring        "\125\125\125\125\125\125\125\125\125\125\125\125"
#define WARN_NONEstring        "\0\0\0\0\0\0\0\0\0\0\0\0"
#define WARN_TAINTstring    "\0\0\0\0\0\0\0\0\0\100\0\0"

#define isLEXWARN_on     (PL_curcop->cop_warnings != pWARN_STD)
#define isLEXWARN_off    (PL_curcop->cop_warnings == pWARN_STD)
#define isWARN_ONCE    (PL_dowarn & (G_WARN_ON|G_WARN_ONCE))
#define isWARN_on(c,x)    (IsSet(SvPVX(c), 2*(x)))
#define isWARNf_on(c,x)    (IsSet(SvPVX(c), 2*(x)+1))

#define ckWARN(x)                            \
    ( (isLEXWARN_on && PL_curcop->cop_warnings != pWARN_NONE &&    \
          (PL_curcop->cop_warnings == pWARN_ALL ||            \
           isWARN_on(PL_curcop->cop_warnings, x) ) )        \
      || (isLEXWARN_off && PL_dowarn & G_WARN_ON) )

#define ckWARN2(x,y)                            \
      ( (isLEXWARN_on && PL_curcop->cop_warnings != pWARN_NONE &&    \
          (PL_curcop->cop_warnings == pWARN_ALL ||            \
            isWARN_on(PL_curcop->cop_warnings, x)  ||        \
            isWARN_on(PL_curcop->cop_warnings, y) ) )         \
        ||    (isLEXWARN_off && PL_dowarn & G_WARN_ON) )

#define ckWARN3(x,y,z)                            \
      ( (isLEXWARN_on && PL_curcop->cop_warnings != pWARN_NONE &&    \
          (PL_curcop->cop_warnings == pWARN_ALL ||            \
            isWARN_on(PL_curcop->cop_warnings, x)  ||        \
            isWARN_on(PL_curcop->cop_warnings, y)  ||        \
            isWARN_on(PL_curcop->cop_warnings, z) ) )         \
        ||    (isLEXWARN_off && PL_dowarn & G_WARN_ON) )

#define ckWARN4(x,y,z,t)                        \
      ( (isLEXWARN_on && PL_curcop->cop_warnings != pWARN_NONE &&    \
          (PL_curcop->cop_warnings == pWARN_ALL ||            \
            isWARN_on(PL_curcop->cop_warnings, x)  ||        \
            isWARN_on(PL_curcop->cop_warnings, y)  ||        \
            isWARN_on(PL_curcop->cop_warnings, z)  ||        \
            isWARN_on(PL_curcop->cop_warnings, t) ) )         \
        ||    (isLEXWARN_off && PL_dowarn & G_WARN_ON) )

#define ckWARN_d(x)                            \
      (isLEXWARN_off || PL_curcop->cop_warnings == pWARN_ALL ||    \
         (PL_curcop->cop_warnings != pWARN_NONE &&            \
          isWARN_on(PL_curcop->cop_warnings, x) ) )

#define ckWARN2_d(x,y)                            \
      (isLEXWARN_off || PL_curcop->cop_warnings == pWARN_ALL ||    \
         (PL_curcop->cop_warnings != pWARN_NONE &&            \
            (isWARN_on(PL_curcop->cop_warnings, x)  ||        \
             isWARN_on(PL_curcop->cop_warnings, y) ) ) )

#define ckWARN3_d(x,y,z)                        \
      (isLEXWARN_off || PL_curcop->cop_warnings == pWARN_ALL ||    \
         (PL_curcop->cop_warnings != pWARN_NONE &&            \
            (isWARN_on(PL_curcop->cop_warnings, x)  ||        \
             isWARN_on(PL_curcop->cop_warnings, y)  ||        \
             isWARN_on(PL_curcop->cop_warnings, z) ) ) )

#define ckWARN4_d(x,y,z,t)                        \
      (isLEXWARN_off || PL_curcop->cop_warnings == pWARN_ALL ||    \
         (PL_curcop->cop_warnings != pWARN_NONE &&            \
            (isWARN_on(PL_curcop->cop_warnings, x)  ||        \
             isWARN_on(PL_curcop->cop_warnings, y)  ||        \
             isWARN_on(PL_curcop->cop_warnings, z)  ||        \
             isWARN_on(PL_curcop->cop_warnings, t) ) ) )

#define packWARN(a)        (a                                 )
#define packWARN2(a,b)        ((a) | (b)<<8                      )
#define packWARN3(a,b,c)    ((a) | (b)<<8 | (c) <<16           )
#define packWARN4(a,b,c,d)    ((a) | (b)<<8 | (c) <<16 | (d) <<24)

#define unpackWARN1(x)        ((x)        & 0xFF)
#define unpackWARN2(x)        (((x) >>8)  & 0xFF)
#define unpackWARN3(x)        (((x) >>16) & 0xFF)
#define unpackWARN4(x)        (((x) >>24) & 0xFF)

#define ckDEAD(x)                            \
       ( ! specialWARN(PL_curcop->cop_warnings) &&            \
        ( isWARNf_on(PL_curcop->cop_warnings, WARN_ALL) ||         \
          isWARNf_on(PL_curcop->cop_warnings, unpackWARN1(x)) ||    \
          isWARNf_on(PL_curcop->cop_warnings, unpackWARN2(x)) ||    \
          isWARNf_on(PL_curcop->cop_warnings, unpackWARN3(x)) ||    \
          isWARNf_on(PL_curcop->cop_warnings, unpackWARN4(x))))

/* end of file warnings.h */


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #16 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0034 ]--