2011-03-12 07:14:32 +08:00
|
|
|
.\" **************************************************************************
|
|
|
|
.\" * _ _ ____ _
|
|
|
|
.\" * Project ___| | | | _ \| |
|
|
|
|
.\" * / __| | | | |_) | |
|
|
|
|
.\" * | (__| |_| | _ <| |___
|
|
|
|
.\" * \___|\___/|_| \_\_____|
|
|
|
|
.\" *
|
2023-01-02 20:51:48 +08:00
|
|
|
.\" * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2011-03-12 07:14:32 +08:00
|
|
|
.\" *
|
|
|
|
.\" * This software is licensed as described in the file COPYING, which
|
|
|
|
.\" * you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
.\" * are also available at https://curl.se/docs/copyright.html.
|
2011-03-12 07:14:32 +08: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.
|
|
|
|
.\" *
|
|
|
|
.\" * SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
.\" *
|
2011-03-12 07:14:32 +08:00
|
|
|
.\" **************************************************************************
|
2023-04-26 14:58:35 +08:00
|
|
|
.TH curl_version 3 "5 March 2001" "libcurl" "libcurl"
|
2002-03-04 18:09:48 +08:00
|
|
|
.SH NAME
|
|
|
|
curl_version - returns the libcurl version string
|
|
|
|
.SH SYNOPSIS
|
2021-11-26 21:20:18 +08:00
|
|
|
.nf
|
|
|
|
#include <curl/curl.h>
|
|
|
|
|
|
|
|
char *curl_version();
|
|
|
|
.fi
|
2002-03-04 18:09:48 +08:00
|
|
|
.SH DESCRIPTION
|
|
|
|
Returns a human readable string with the version number of libcurl and some of
|
|
|
|
its important components (like OpenSSL version).
|
2014-02-18 15:59:56 +08:00
|
|
|
|
|
|
|
We recommend using \fIcurl_version_info(3)\fP instead!
|
2021-10-25 14:54:08 +08:00
|
|
|
.SH EXAMPLE
|
|
|
|
.nf
|
2021-11-05 06:48:23 +08:00
|
|
|
printf("libcurl version %s\\n", curl_version());
|
2021-10-25 14:54:08 +08:00
|
|
|
.fi
|
|
|
|
|
|
|
|
.SH AVAILABILITY
|
|
|
|
Always
|
2002-03-04 18:09:48 +08:00
|
|
|
.SH RETURN VALUE
|
2020-06-25 17:38:25 +08:00
|
|
|
A pointer to a null-terminated string. The string resides in a statically
|
2013-02-22 20:06:54 +08:00
|
|
|
allocated buffer and must not be freed by the caller.
|
2002-03-04 18:09:48 +08:00
|
|
|
.SH "SEE ALSO"
|
2003-08-12 07:07:38 +08:00
|
|
|
.BR curl_version_info "(3)"
|