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

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/usr/include/libxml2/libxml/   drwxr-xr-x
Free 318.36 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     list.h (3.17 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * list.h: lists interfaces
 *
 * Copyright (C) 2000 Gary Pennington and Daniel Veillard.
 *
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
 * MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND
 * CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER.
 *
 * Author: Gary.Pennington@uk.sun.com
 */

#ifndef __XML_LINK_INCLUDE__
#define __XML_LINK_INCLUDE__

#ifdef __cplusplus
extern "C" {
#endif

typedef struct _xmlLink xmlLink;
typedef xmlLink *xmlLinkPtr;

typedef struct _xmlList xmlList;
typedef xmlList *xmlListPtr;

/**
 * xmlListDeallocator:
 * @lk:  the data to deallocate
 *
 * Callback function used to free data from a list.
 */
typedef void (*xmlListDeallocator) (xmlLinkPtr lk);
/**
 * xmlListDataCompare:
 * @data0: the first data
 * @data1: the second data
 *
 * Callback function used to compare 2 data.
 *
 * Returns 0 is equality, -1 or 1 otherwise depending on the ordering.
 */
typedef int  (*xmlListDataCompare) (const void *data0, const void *data1);
/**
 * xmlListWalker:
 * @data: the data found in the list
 * @user: extra user provided data to the walker
 *
 * Callback function used when walking a list with xmlListWalk().
 *
 * Returns 0 to stop walking the list, 1 otherwise.
 */
typedef int (*xmlListWalker) (const void *data, const void *user);

/* Creation/Deletion */
xmlListPtr    xmlListCreate        (xmlListDeallocator deallocator,
                                     xmlListDataCompare compare);
void        xmlListDelete        (xmlListPtr l);

/* Basic Operators */
void *        xmlListSearch        (xmlListPtr l,
                     void *data);
void *        xmlListReverseSearch    (xmlListPtr l,
                     void *data);
int        xmlListInsert        (xmlListPtr l,
                     void *data) ;
int        xmlListAppend        (xmlListPtr l,
                     void *data) ;
int        xmlListRemoveFirst    (xmlListPtr l,
                     void *data);
int        xmlListRemoveLast    (xmlListPtr l,
                     void *data);
int        xmlListRemoveAll    (xmlListPtr l,
                     void *data);
void        xmlListClear        (xmlListPtr l);
int        xmlListEmpty        (xmlListPtr l);
xmlLinkPtr    xmlListFront        (xmlListPtr l);
xmlLinkPtr    xmlListEnd        (xmlListPtr l);
int        xmlListSize        (xmlListPtr l);

void        xmlListPopFront        (xmlListPtr l);
void        xmlListPopBack        (xmlListPtr l);
int        xmlListPushFront    (xmlListPtr l,
                     void *data);
int        xmlListPushBack        (xmlListPtr l,
                     void *data);

/* Advanced Operators */
void        xmlListReverse        (xmlListPtr l);
void        xmlListSort        (xmlListPtr l);
void        xmlListWalk        (xmlListPtr l,
                     xmlListWalker walker,
                     const void *user);
void        xmlListReverseWalk    (xmlListPtr l,
                     xmlListWalker walker,
                     const void *user);
void        xmlListMerge        (xmlListPtr l1,
                     xmlListPtr l2);
xmlListPtr    xmlListDup        (const xmlListPtr old);
int        xmlListCopy        (xmlListPtr cur,
                     const xmlListPtr old);
/* Link operators */
void *          xmlLinkGetData          (xmlLinkPtr lk);

/* xmlListUnique() */
/* xmlListSwap */

#ifdef __cplusplus
}
#endif

#endif /* __XML_LINK_INCLUDE__ */

:: 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 #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0191 ]--