1
0
mirror of https://github.com/lammertb/libhttp.git synced 2025-08-13 12:42:25 +03:00
Files
libhttp/docs/api/mg_printf.md
2016-11-15 20:04:22 +01:00

1.1 KiB

LibHTTP API Reference

mg_printf( conn, fmt, ... );

Parameters

Parameter Type Description
conn struct mg_connection * The connection over which the data must be sent
fmt const char * Format string
... various Parameters as specified in the format string

Return Value

Type Description
int Number of bytes written or an error code

Description

The function mg_printf() can be used to send formatted strings over a connection. The functionality is comparable to the printf() family of functions in the standard C library. The function returns 0 when the connection has been closed, -1 if an error occurred and otherwise the number of bytes written over the connection. Except for the formatting part, the mg_printf() function is identical to the function mg_write().

See Also