2011-09-20 09:58:35 -04:00
|
|
|
#ifndef HEADER_CURL_TOOL_MSGS_H
|
|
|
|
#define HEADER_CURL_TOOL_MSGS_H
|
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2019-11-02 18:41:43 -04:00
|
|
|
* Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2011-09-20 09:58:35 -04:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2011-09-20 09:58:35 -04:00
|
|
|
*
|
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2012-04-06 17:35:15 -04:00
|
|
|
#include "tool_setup.h"
|
2011-09-20 09:58:35 -04:00
|
|
|
|
2015-02-27 15:48:38 -05:00
|
|
|
void warnf(struct GlobalConfig *config, const char *fmt, ...);
|
2015-08-29 17:56:28 -04:00
|
|
|
void notef(struct GlobalConfig *config, const char *fmt, ...);
|
2011-09-20 09:58:35 -04:00
|
|
|
void helpf(FILE *errors, const char *fmt, ...);
|
2019-12-02 06:00:41 -05:00
|
|
|
void errorf(struct GlobalConfig *config, const char *fmt, ...);
|
2011-09-20 09:58:35 -04:00
|
|
|
|
|
|
|
#endif /* HEADER_CURL_TOOL_MSGS_H */
|