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.
 
 
 
 
 
 

26 line
631 B

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