!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/include/   drwxr-xr-x
Free 3.89 GB of 27.03 GB (14.41%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     mxTextTools.h (1.55 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#ifndef MXTEXTTOOLS_H
#define MXTEXTTOOLS_H
/*
  mxTextTools -- Fast text manipulation routines

  Copyright (c) 2000, Marc-Andre Lemburg; mailto:mal@lemburg.com
  Copyright (c) 2000-2001, eGenix.com Software GmbH; mailto:info@egenix.com
*/

/* The extension's name; must be the same as the init function's suffix */
#define MXTEXTTOOLS_MODULE "mxTextTools"

#include "mxbmse.h"
#ifdef MXFASTSEARCH
# include "private/mxfse.h"
#endif
#include "mxte.h"

/* Include generic mx extension header file */
#include "mxh.h"

#ifdef MX_BUILDING_MXTEXTTOOLS
# define MXTEXTTOOLS_EXTERNALIZE MX_EXPORT
#else
# define MXTEXTTOOLS_EXTERNALIZE MX_IMPORT
#endif

#ifdef __cplusplus
extern "C" {
#endif

/* --- Boyer Moore Substring Search Object ----------------------*/

typedef struct {
    PyObject_HEAD
    PyObject *match;         /* Match string object */
    PyObject *tr;         /* Translate string object or NULL */
    mxbmse_data *c;         /* Internal data; see mxbmse.h */
} mxBMSObject;

MXTEXTTOOLS_EXTERNALIZE(PyTypeObject) mxBMS_Type;

#define _mxBMS_Check(v) \
        (((mxBMSObject *)(v))->ob_type == &mxBMS_Type)

#ifdef MXFASTSEARCH

/* --- Fast Search Object --------------------------------------*/

typedef struct {
    PyObject_HEAD
    PyObject *match;         /* Match string object */
    PyObject *tr;         /* Translate string object or NULL */
    mxfse_data *c;         /* Internal data; see mxfse.h */
} mxFSObject;

MXTEXTTOOLS_EXTERNALIZE(PyTypeObject) mxFS_Type;

#define _mxFS_Check(v) \
        (((mxFSObject *)(v))->ob_type == &mxFS_Type)

#endif

/* EOF */
#ifdef __cplusplus
}
#endif
#endif

:: 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.0036 ]--