Client: eliminate client_puts(), use Client::Write() instead

This commit is contained in:
Max Kellermann
2017-02-03 20:46:53 +01:00
parent 3102e05da4
commit 16b260e371
5 changed files with 3 additions and 14 deletions

View File

@@ -37,12 +37,6 @@ Client::Write(const char *data)
return Write(data, strlen(data));
}
void
client_puts(Client &client, const char *s)
{
client.Write(s);
}
void
client_vprintf(Client &client, const char *fmt, va_list args)
{