~vorlon/ubuntu/natty/curl/multiarch

« back to all changes in this revision

Viewing changes to docs/libcurl/curl_mprintf.3

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2009-04-29 11:10:29 UTC
  • mfrom: (3.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090429111029-2j5eiyokfw2bw049
Tags: 7.19.4-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Drop build dependencies: stunnel, libdb4.6-dev, libssh2-1-dev
  - Add build-dependency on openssh-server
  - Drop libssh2-1-dev from libcurl4-openssl-dev's Depends.
  - Call automake-1.9 with --add-missing --copy --force
* drop debian/patches/security_CVE-2009-0037.patch 
  - this patch is part of 7.19.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.\" $Id: curl_mprintf.3,v 1.3 2004/04/30 08:38:08 bagder Exp $
 
1
.\" $Id: curl_mprintf.3,v 1.4 2008-12-28 21:56:56 bagder Exp $
2
2
.\"
3
3
.TH curl_printf 3 "30 April 2004" "libcurl 7.12" "libcurl Manual"
4
4
.SH NAME
28
28
.br
29
29
.BI "char *curl_mvaprintf(const char *" format ", va_list " args ");"
30
30
.SH DESCRIPTION
31
 
These are all functions that produces output according to a format string and
 
31
These are all functions that produce output according to a format string and
32
32
given arguments. These are mostly clones of the well-known C-style functions
33
33
and there will be no detailed explanation of all available formatting rules
34
34
and usage here.
83
83
then as curlx_-prefixed functions. See lib/README.curlx for further details.
84
84
.SH RETURN VALUE
85
85
The \fBcurl_maprintf\fP and \fBcurl_mvaprintf\fP functions return a pointer to
86
 
a newly allocated string, or NULL it it failed.
 
86
a newly allocated string, or NULL if it failed.
87
87
 
88
 
All other functions return the number of character they actually outputed.
 
88
All other functions return the number of characters they actually outputted.
89
89
.SH "SEE ALSO"
90
90
.BR printf "(3), " sprintf "(3), " fprintf "(3), " vprintf "(3) "