From 32037db492e1091932e3e99e950bcc83a572f83d Mon Sep 17 00:00:00 2001 From: Jean-Yves Lamoureux Date: Thu, 9 Mar 2006 09:52:24 +0000 Subject: [PATCH] * Updated documentation a bit --- caca/caca.h | 5 +++-- cucul/cucul.h | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/caca/caca.h b/caca/caca.h index f51f748..549ee8f 100644 --- a/caca/caca.h +++ b/caca/caca.h @@ -30,7 +30,8 @@ * using the conio library, and on Windows systems using either slang or * ncurses (through Cygwin emulation) or conio. There is also a native X11 * driver, and an OpenGL driver (through freeglut) that does not require a - * text terminal. + * text terminal. For machines without a screen, and with a valid tcp stack, + * the network driver (BSD sockets) should perfectly fit your needs. * * \e libcaca is free software, released under the Do What The Fuck You * Want To Public License. This ensures that no one, not even the \e libcaca @@ -59,7 +60,7 @@ * - \c slang uses the S-Lang library. * - \c x11 uses the native X11 driver. * - \c gl uses freeglut and opengl libraries. - * - \c null uses nothing at all, and will display nothing as well. + * - \c network uses BSD sockets calls. * * \li \b CUCUL_BACKGROUND: set the background type. * - \c solid uses solid coloured backgrounds for all characters. This diff --git a/cucul/cucul.h b/cucul/cucul.h index 5afe72f..aa2cb87 100644 --- a/cucul/cucul.h +++ b/cucul/cucul.h @@ -201,6 +201,7 @@ void cucul_free_bitmap(cucul_t *, struct cucul_bitmap *); /** \defgroup exporter Exporters to various formats * * These functions exports current image to various text formats + * Returned buffer will be freed() each you'll call the exporter function. * * @{ */ char* cucul_get_html(cucul_t *, int *size);