Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/bind9/isc
File: commandline.h
/*
[0] Fix | Delete
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
[1] Fix | Delete
*
[2] Fix | Delete
* This Source Code Form is subject to the terms of the Mozilla Public
[3] Fix | Delete
* License, v. 2.0. If a copy of the MPL was not distributed with this
[4] Fix | Delete
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
[5] Fix | Delete
*
[6] Fix | Delete
* See the COPYRIGHT file distributed with this work for additional
[7] Fix | Delete
* information regarding copyright ownership.
[8] Fix | Delete
*/
[9] Fix | Delete
[10] Fix | Delete
[11] Fix | Delete
#ifndef ISC_COMMANDLINE_H
[12] Fix | Delete
#define ISC_COMMANDLINE_H 1
[13] Fix | Delete
[14] Fix | Delete
/*! \file isc/commandline.h */
[15] Fix | Delete
[16] Fix | Delete
#include <stdbool.h>
[17] Fix | Delete
[18] Fix | Delete
#include <isc/lang.h>
[19] Fix | Delete
#include <isc/platform.h>
[20] Fix | Delete
#include <isc/result.h>
[21] Fix | Delete
[22] Fix | Delete
/*% Index into parent argv vector. */
[23] Fix | Delete
LIBISC_EXTERNAL_DATA extern int isc_commandline_index;
[24] Fix | Delete
/*% Character checked for validity. */
[25] Fix | Delete
LIBISC_EXTERNAL_DATA extern int isc_commandline_option;
[26] Fix | Delete
/*% Argument associated with option. */
[27] Fix | Delete
LIBISC_EXTERNAL_DATA extern char *isc_commandline_argument;
[28] Fix | Delete
/*% For printing error messages. */
[29] Fix | Delete
LIBISC_EXTERNAL_DATA extern char *isc_commandline_progname;
[30] Fix | Delete
/*% Print error message. */
[31] Fix | Delete
LIBISC_EXTERNAL_DATA extern bool isc_commandline_errprint;
[32] Fix | Delete
/*% Reset getopt. */
[33] Fix | Delete
LIBISC_EXTERNAL_DATA extern bool isc_commandline_reset;
[34] Fix | Delete
[35] Fix | Delete
ISC_LANG_BEGINDECLS
[36] Fix | Delete
[37] Fix | Delete
int
[38] Fix | Delete
isc_commandline_parse(int argc, char * const *argv, const char *options);
[39] Fix | Delete
/*%<
[40] Fix | Delete
* Parse a command line (similar to getopt())
[41] Fix | Delete
*/
[42] Fix | Delete
[43] Fix | Delete
isc_result_t
[44] Fix | Delete
isc_commandline_strtoargv(isc_mem_t *mctx, char *s, unsigned int *argcp,
[45] Fix | Delete
char ***argvp, unsigned int n);
[46] Fix | Delete
/*%<
[47] Fix | Delete
* Tokenize the string "s" into whitespace-separated words,
[48] Fix | Delete
* returning the number of words in '*argcp' and an array
[49] Fix | Delete
* of pointers to the words in '*argvp'. The caller
[50] Fix | Delete
* must free the array using isc_mem_free(). The string
[51] Fix | Delete
* is modified in-place.
[52] Fix | Delete
*/
[53] Fix | Delete
[54] Fix | Delete
ISC_LANG_ENDDECLS
[55] Fix | Delete
[56] Fix | Delete
#endif /* ISC_COMMANDLINE_H */
[57] Fix | Delete
[58] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function