mprintf.h
Go to the documentation of this file.
00001 #ifndef __CURL_MPRINTF_H
00002 #define __CURL_MPRINTF_H
00003 /***************************************************************************
00004  *                                  _   _ ____  _
00005  *  Project                     ___| | | |  _ \| |
00006  *                             / __| | | | |_) | |
00007  *                            | (__| |_| |  _ <| |___
00008  *                             \___|\___/|_| \_\_____|
00009  *
00010  * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
00011  *
00012  * This software is licensed as described in the file COPYING, which
00013  * you should have received as part of this distribution. The terms
00014  * are also available at https://curl.haxx.se/docs/copyright.html.
00015  *
00016  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
00017  * copies of the Software, and permit persons to whom the Software is
00018  * furnished to do so, under the terms of the COPYING file.
00019  *
00020  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
00021  * KIND, either express or implied.
00022  *
00023  ***************************************************************************/
00024 
00025 #include <stdarg.h>
00026 #include <stdio.h> /* needed for FILE */
00027 #include "curl.h"  /* for CURL_EXTERN */
00028 
00029 #ifdef  __cplusplus
00030 extern "C" {
00031 #endif
00032 
00033 CURL_EXTERN int curl_mprintf(const char *format, ...);
00034 CURL_EXTERN int curl_mfprintf(FILE *fd, const char *format, ...);
00035 CURL_EXTERN int curl_msprintf(char *buffer, const char *format, ...);
00036 CURL_EXTERN int curl_msnprintf(char *buffer, size_t maxlength,
00037                                const char *format, ...);
00038 CURL_EXTERN int curl_mvprintf(const char *format, va_list args);
00039 CURL_EXTERN int curl_mvfprintf(FILE *fd, const char *format, va_list args);
00040 CURL_EXTERN int curl_mvsprintf(char *buffer, const char *format, va_list args);
00041 CURL_EXTERN int curl_mvsnprintf(char *buffer, size_t maxlength,
00042                                 const char *format, va_list args);
00043 CURL_EXTERN char *curl_maprintf(const char *format, ...);
00044 CURL_EXTERN char *curl_mvaprintf(const char *format, va_list args);
00045 
00046 #ifdef  __cplusplus
00047 }
00048 #endif
00049 
00050 #endif /* __CURL_MPRINTF_H */


rc_visard_driver
Author(s): Heiko Hirschmueller , Christian Emmerich , Felix Ruess
autogenerated on Thu Jun 6 2019 20:43:05