Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/curl
File: mprintf.h
#ifndef __CURL_MPRINTF_H
[0] Fix | Delete
#define __CURL_MPRINTF_H
[1] Fix | Delete
/***************************************************************************
[2] Fix | Delete
* _ _ ____ _
[3] Fix | Delete
* Project ___| | | | _ \| |
[4] Fix | Delete
* / __| | | | |_) | |
[5] Fix | Delete
* | (__| |_| | _ <| |___
[6] Fix | Delete
* \___|\___/|_| \_\_____|
[7] Fix | Delete
*
[8] Fix | Delete
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
[9] Fix | Delete
*
[10] Fix | Delete
* This software is licensed as described in the file COPYING, which
[11] Fix | Delete
* you should have received as part of this distribution. The terms
[12] Fix | Delete
* are also available at https://curl.haxx.se/docs/copyright.html.
[13] Fix | Delete
*
[14] Fix | Delete
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
[15] Fix | Delete
* copies of the Software, and permit persons to whom the Software is
[16] Fix | Delete
* furnished to do so, under the terms of the COPYING file.
[17] Fix | Delete
*
[18] Fix | Delete
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
[19] Fix | Delete
* KIND, either express or implied.
[20] Fix | Delete
*
[21] Fix | Delete
***************************************************************************/
[22] Fix | Delete
[23] Fix | Delete
#include <stdarg.h>
[24] Fix | Delete
#include <stdio.h> /* needed for FILE */
[25] Fix | Delete
#include "curl.h" /* for CURL_EXTERN */
[26] Fix | Delete
[27] Fix | Delete
#ifdef __cplusplus
[28] Fix | Delete
extern "C" {
[29] Fix | Delete
#endif
[30] Fix | Delete
[31] Fix | Delete
CURL_EXTERN int curl_mprintf(const char *format, ...);
[32] Fix | Delete
CURL_EXTERN int curl_mfprintf(FILE *fd, const char *format, ...);
[33] Fix | Delete
CURL_EXTERN int curl_msprintf(char *buffer, const char *format, ...);
[34] Fix | Delete
CURL_EXTERN int curl_msnprintf(char *buffer, size_t maxlength,
[35] Fix | Delete
const char *format, ...);
[36] Fix | Delete
CURL_EXTERN int curl_mvprintf(const char *format, va_list args);
[37] Fix | Delete
CURL_EXTERN int curl_mvfprintf(FILE *fd, const char *format, va_list args);
[38] Fix | Delete
CURL_EXTERN int curl_mvsprintf(char *buffer, const char *format, va_list args);
[39] Fix | Delete
CURL_EXTERN int curl_mvsnprintf(char *buffer, size_t maxlength,
[40] Fix | Delete
const char *format, va_list args);
[41] Fix | Delete
CURL_EXTERN char *curl_maprintf(const char *format, ...);
[42] Fix | Delete
CURL_EXTERN char *curl_mvaprintf(const char *format, va_list args);
[43] Fix | Delete
[44] Fix | Delete
#ifdef __cplusplus
[45] Fix | Delete
}
[46] Fix | Delete
#endif
[47] Fix | Delete
[48] Fix | Delete
#endif /* __CURL_MPRINTF_H */
[49] Fix | Delete
[50] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function