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.
 
 
 
 
 
 

25 lines
700 B

  1. /*
  2. * Imaging tools for cacaview and img2irc
  3. * Copyright (c) 2003-2010 Sam Hocevar <sam@hocevar.net>
  4. * All Rights Reserved
  5. *
  6. * This program is free software. It comes without any warranty, to
  7. * the extent permitted by applicable law. You can redistribute it
  8. * and/or modify it under the terms of the Do What The Fuck You Want
  9. * To Public License, Version 2, as published by Sam Hocevar. See
  10. * http://sam.zoy.org/wtfpl/COPYING for more details.
  11. */
  12. struct image
  13. {
  14. char *pixels;
  15. unsigned int w, h;
  16. struct caca_dither *dither;
  17. void *priv;
  18. };
  19. /* Local functions */
  20. extern struct image * load_image(char const *);
  21. extern void unload_image(struct image *);