client_term.c
author viric@llimona
Mon, 08 Oct 2007 12:59:27 +0200
changeset 79 7d316733d4b1
parent 53 07500c5c53cb
permissions -rw-r--r--
Added filterdes.

/*
    Terminal Mixer - multi-point multi-user access to terminal applications
    Copyright (C) 2007  LluĂ­s Batlle i Rossell

    Please find the license in the provided COPYING file.
*/
#include <unistd.h>

void send_to_client_stdout(const char *buf, int len)
{
    write(1, buf, len);
}