You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
847 B

  1. /*
  2. * libcaca Colour ASCII-Art library
  3. * Copyright (c) 2002-2009 Sam Hocevar <sam@hocevar.net>
  4. * 2006 Jean-Yves Lamoureux <jylam@lnxscene.org>
  5. * All Rights Reserved
  6. *
  7. * $Id$
  8. *
  9. * This library is free software. It comes without any warranty, to
  10. * the extent permitted by applicable law. You can redistribute it
  11. * and/or modify it under the terms of the Do What The Fuck You Want
  12. * To Public License, Version 2, as published by Sam Hocevar. See
  13. * http://sam.zoy.org/wtfpl/COPYING for more details.
  14. */
  15. ssize_t _import_text(caca_canvas_t *, void const *, size_t);
  16. ssize_t _import_ansi(caca_canvas_t *, void const *, size_t, int);
  17. void *_export_ansi(caca_canvas_t const *, size_t *);
  18. void *_export_utf8(caca_canvas_t const *, size_t *, int);
  19. void *_export_irc(caca_canvas_t const *, size_t *);